
float4 FresnelSchlick(float4 F0, float VdotH){
return F0 + (1 - F0) * exp2(-5.55473 * VdotH - 6.98316 * VdotH);
}
这个公式中的指数也搞错了。
是(-5.55473 * VdotH - 6.98316) * VdotH
从零开始在Unity中写一个PBR着色器几个月前,偶然接触了PBR(Physically Based Rendering),找了很多博客看是怎么回事,并照着公式写了个shader,感觉还可以。现在回头来整理下,本来...
为什么算g2的时候除法变成乘法了。
float SmithJoint(float NdotL, float NdotV,float r){
float k = pow2(r+1) / 8;
float g1 = NdotV / (NdotV * (1 - k) + k);
float g2 = NdotL * (NdotL * (1 - k) + k);
return g1 * g2;
}
从零开始在Unity中写一个PBR着色器几个月前,偶然接触了PBR(Physically Based Rendering),找了很多博客看是怎么回事,并照着公式写了个shader,感觉还可以。现在回头来整理下,本来...