Realtime Rendering 6

1、Lighting computations occur in two phases:

  1)light phase.

    used to compute the light’s direction vector l and irradiance contribution  E^L.

  2)material phaes.

    In the material phase, the BRDF parameters and surface normal.

  The result of the BRDF evaluation is multiplied by a cosine factor and by to produce the outgoing radiance EL.

  Both phases are repeated for each light source and the results are summed to produce the total outgoing radiance for the fragment.

  每个 surface对每个 light source 依次执行上面两个 phase,所有 light source 的计算结果结果最终汇总到一起。

2、 每一个material需要配合各种 light source组合,导致shader非常多。

  Valve抯 Half-Life 2 has 1920 pixel shader combinations.

  Light Type 组合会导致Shader爆炸。

3、让每个material处理所有的 light 会导致效率非常低。

  A long hallway, which is lit by twenty spaced light sources.  if dynamic branches are not employed, then all twenty light sources need to be computed for every pixel.

  loop优化方式是:

  loop over light sources dynamically in the pixel shader. Unfortunately, dynamic branches in the pixel shader perform poorly on many GPUs.

  ubershader、supershader 优化方式:

  write a single large shader that is compiled multiple times, using language features or code preprocessors to create a different specialized version of the shader each time.

  只写一个通用Shader,通过mactro为每一种 light source组合生成相应shader。

4、一种常用策略。

  

5、Multipass Lighting.

  The idea is to process every light in a separate rendering pass. using the hardware's additive blending capabilities to sum the results in the frame buffe

  每个shader的每个 pass 渲染一种 light source type。从而shader与light source type 组合数解耦。

  此法可以解决Shader爆炸的问题。

  但是此种渲染效率并不高。 This is an O(mn) process. 

6、Deferred Shading.

  to perform all visibility testing before performing any lighting computations.  If the fragment is completely covered by some later fragment, all the time spent computing its shade is wasted.  

  用于优化因深度问题而导致的无效渲染的问题。

  A rough front-to-back sort of objects can help minimize this problem, but deferred shading completely resolves it.

   从前向后渲染中以缓解无用渲染问题,但延迟渲染可以完全解决它。

  Be done with a Z-buffer by performing a rendering pass that stores away the attributes of the closest visible surface.  Values saved include the z-depth, normal, texture coordinates, and material parameters.

  These values are saved to multiple render targets accessed by the pixel shader program.  The stored buffers are commonly called G-buffers,short for “geometric buffers

  第一个Pass渲染所有信息到 G-Buffer,包括 z-depth,normal,texture coordinate, material parameter。第一个pass从G-buffer中读取数据,进行渲染。

  Fragment shading is done only once per pixel (per shading program) and so has a predictable upper bound on rendering cost. Geometric transformation is done only once, in the initial pass, and any computations needed for lighting are done only once.

  Fifty or more dynamic lights in a scene can easily be handled by deferred shading;

  延迟渲染中以轻松处理50个以上的灯光。

7、Early Z pass。

  分两步:

  1)performing an initial pass and establishing the Z-buffer.

  2)scene is rendered normally with full shading. 

8、Deferred Shading Zioma变种。

  local light sources are rendered to and stored in buffer. Depth peeling can be used to handle storing the information for overlapping light sources. The scene’s geometry is then rendered, using these stored light representations during shading.

  此法有两个好处:

  1)surface materials are not limited by what is stored in the G-buffer

  2)storing light source descriptions can take considerably less space than storing a full material description. 

Realtime Rendering 6的更多相关文章

  1. Rendering pipeline overview(读书笔记1 --- Real-Time rendering)

    1. Rendering pipeline的作用就是在给定的虚拟相机.三维物体.光源.着色方程式.纹理等的条件下产生(渲染)二维图像 2. pipeline包含很多个stage,其效率由最慢的stag ...

  2. Realtime Rendering 1.1

    [Realtime Rendering 1.1] 1.A linear transform is one that preserves vector addition and scalar multi ...

  3. Realtime Rendering 5

    [Real Time Rendering 5] 1.In radiometry, the function that is used to describe how a surface reflect ...

  4. 画面渲染:实时渲染(Real-time Rendering)、离线渲染(Offline Rendering)[转]

    实时渲染(Real-time Rendering) 实时渲染的本质就是图形数据的实时计算和输出.最典型的图形数据源是顶点.顶点包括了位置.法向.颜色.纹理坐标.顶点的权重等.在第一代渲染技术中(198 ...

  5. Real-Time Rendering (2) - 变换和矩阵(Transforms and Matrics)

    http://blog.csdn.net/silangquan/article/details/9970673 提要 在图形的计算中,比如旋转.缩放.平移.投影等操作,矩阵都扮演着极其重要的角色,它是 ...

  6. 基本变换(读书笔记5 --- Real-Time rendering)

    刚体变换 即变换不改变了被变换顶点之间的距离,以及偏手性(不会让左右手坐标系颠倒). 下面的平移变换.旋转变换即属于刚体变换 平移 从一个位置变到另一个位置可以用平移矩阵T来表示,这个矩阵将一个实体变 ...

  7. Shaders(读书笔记4 --- Real-Time rendering)

    1. vertex,pixel以及geometry shaders共享一个programming model,即common-shader core,在GPU架构中的unified shader可以和 ...

  8. Rasterizer Stage(读书笔记3 --- Real-Time rendering)

    rasterizer stage的目标:计算和设置每个像素的颜色.将屏幕空间的二维顶点和每个顶点的shading信息转换为屏幕上的像素. rasterizer stage可以分为几个阶段:triang ...

  9. Geometry Stage in Rendering pipeline (读书笔记2 --- Real-Time rendering)

    Geometry Stage一般包含下面几个阶段 1. Model & View Transform(模型和视图变换) --- 模型空间--> 世界空间 模型变换:每个模型经过模型变换来 ...

随机推荐

  1. TessorFlow学习 之 序言

    2017.10.23日记录: 感觉平时自己学的还不错的,可是面试的时候才发现自己是个渣渣~~,真的感觉学习不能闭门造车! 面试了图像处理算法工程师-->> 1.精通哪门语言?C.C++.P ...

  2. #151: 每一本正式出版的图书都有一个ISBN号码与之对应,ISBN码包括9位数字、1位识别码和3位分隔符,其规定格式如“x-xxx-x

    试题描述 每一本正式出版的图书都有一个ISBN号码与之对应,ISBN码包括9位数字.1位识别码和3位分隔符,其规定格式如“x-xxx-xxxxx-x”,其中符号“-”是分隔符(键盘上的减号),最后一位 ...

  3. Java各个版本的新特性

    原链接:http://blog.csdn.net/shareus/article/details/50736159 1.5 1.自动装箱与拆箱: 2.枚举(常用来设计单例模式) http://www. ...

  4. userdel 用户名 出现“用户**目前已登录”

    userdel 用户名 出现“用户**目前已登录” 今天在删除用户账号的时候,发现一个奇怪现象,即: userdel: user newname is currently logged in 相关命令 ...

  5. 【3-28】javascript简介及语法

    一.简介 (一)定义:JavaScript是一种直译式脚本语言,是一种动态类型.弱类型.基于原型的语言,内置支持类型,需有宿主文件:html文件. (二)作用:1.进行数据运算 2.对浏览器事件作出响 ...

  6. PHP AES加密解密。

    <?php namespace app\models; class AES{ public $key; //构造函数,用密钥初始化 function Prpcrypt( $k ) { $this ...

  7. 使用include重用布局

    尽管Android 支持各种小部件,来提供小且可以重用的交互元素,你可能还需要更大的,要求一个专门布局的重用组件.为了高效的重用整个布局,你能使用和标签在当前的布局中嵌入别的布局. 重用布局功能特别强 ...

  8. python 实例属性

    >>> class a(object): pass >>> o=a() >>> o.a='ok'#直接给实例添加属性,调用了__setattri_ ...

  9. leetcode991

    class Solution: def brokenCalc(self, X: 'int', Y: 'int') -> 'int': if X>=Y : return Y-X else: ...

  10. Project2016下载安装密钥激活教程破解

    project2016发布增加了许多功能.Microsoft Office 2016 官方正式版发布!这是微软发布的全新办公软件套件,相比现有Office 2013的变化也不是很大,界面和功能都只是微 ...