Home Forums Games202-高质量实时渲染 【作业1】请教下,shadowMap中深度的范围 Reply To: 【作业1】请教下,shadowMap中深度的范围

#8101 Score: 0
青麈
Participant
-2 pt

你的pack代码是不是有问题?作业1里面的pack代码不是你这样的。
vec4 pack (float depth) {
// 使用rgba 4字节共32位来存储z值,1个字节精度为1/256
const vec4 bitShift = vec4(1.0, 256.0, 256.0 * 256.0, 256.0 * 256.0 * 256.0);
const vec4 bitMask = vec4(1.0/256.0, 1.0/256.0, 1.0/256.0, 0.0);
// gl_FragCoord:片元的坐标,fract():返回数值的小数部分
vec4 rgbaDepth = fract(depth * bitShift); //计算每个点的z值
rgbaDepth -= rgbaDepth.gbaa * bitMask; // Cut off the value which do not fit in 8 bits
return rgbaDepth;
}