浏览代码

Revert the full horizon occlusion case

/Branch_Batching2
Evgenii Golubev 7 年前
当前提交
25a85c71
共有 1 个文件被更改,包括 5 次插入5 次删除
  1. 10
      Assets/ScriptableRenderPipeline/ShaderLibrary/AreaLighting.hlsl

10
Assets/ScriptableRenderPipeline/ShaderLibrary/AreaLighting.hlsl


float omega = acos(cosOmega);
float gamma = asin(sinGamma);
// if (omega < 0 || omega >= HALF_PI + sigma)
// {
// // Full horizon occlusion (case #4). It should be handled outside of this function.
// return 0;
// }
if (omega < 0 || omega >= HALF_PI + sigma)
{
// Full horizon occlusion (case #4).
return 0;
}
float e = sinSqSigma * cosOmega;

正在加载...
取消
保存