5.7 a simple method for rendering gemstones--game programming gems 5 笔记

这篇gem中没有提到特别多得渲染技术,倒是颇象美工教程,不过某种意义上讲,graphics coder是engineer也是artist么。

里面主要讲把一些渲染方式综合起来来获得一个非常炫的钻石的渲染:

1, cube map

2, fresnel

3, light flare 

比较特别的地方:

1, normal 的处理,对于钻石,表面是一块块的小平面,所以会造成对cubemap的采样过于单一,所以需要把normal作一些处理,face normal和smooth normal进行平均得到一个比较理想的效果。

2, 各种技术的综合:包括渲染正反面,折射(带有fresnel)与反射

3, light flare,常用做法是用billboard,利用特定点的luminance和阀值的比较来决定是否渲染这个flare,但是billboard对于填充率要求比较高,文中提畅建立flare模样的mesh来代替billboard来提高填充率


原文链接: http://blog.csdn.net/ccanan/article/details/1646802

你可能感兴趣的:(5.7 a simple method for rendering gemstones--game programming gems 5 笔记)