《Compress data for deferred shadering's G-Buffer》
Posted DeanWang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了《Compress data for deferred shadering's G-Buffer》相关的知识,希望对你有一定的参考价值。
对于Normal而言,因为是归一化后的,所以只需要存储x和y即可,有多种算法可以进行压缩和解压,这里介绍其中一种比较不错的:
float2 encode(float3 normal) { return normalize(normal.xy) * sqrt(normal.z * 0.5 + 0.5); } float3 decode(float2 n) { float3 normal; normal.z = dot(n, n) * 2 - 1; normal.xy = normalize(n) * sqrt(1 - normal.z * normal.z); return normal; }
对于position的压缩,由于在PS中的像素所在位置已经提供了x和y,可以由x和y计算出z;在GBuffer中可以存储view space中的z除以far plane的值,而在lighting pass中PS拿到像素在view space的位置后计算:
p = view_dir * ((z * far_plane) / view_dir.z);
这样得到的P值的z分量就是真正的view space中的z深度值;其中view_dir是VS传到PS中的,在VS中计算过程是顶点乘上world*view矩阵的结果;
参考:http://www.klayge.org/2011/01/16/klayge%E4%B8%AD%E7%9A%84%E5%BB%B6%E8%BF%9F%E6%B8%B2%E6%9F%93%EF%BC%88%E4%BA%8C%EF%BC%89/
以上是关于《Compress data for deferred shadering's G-Buffer》的主要内容,如果未能解决你的问题,请参考以下文章