Files
stas-barecky/Library/PackageCache/com.unity.render-pipelines.core@ce86d16dfe9d/Runtime/GPUDriven/OcclusionTestCommon.hlsl
2026-01-08 20:43:08 +05:00

34 lines
708 B
HLSL

#ifndef _OCCLUSION_TEST_COMMON_H
#define _OCCLUSION_TEST_COMMON_H
#include "Packages/com.unity.render-pipelines.core/ShaderLibrary/Common.hlsl"
float FarthestDepth(float depthA, float depthB)
{
#if UNITY_REVERSED_Z
return min(depthA, depthB);
#else
return max(depthA, depthB);
#endif
}
float FarthestDepth(float4 depths)
{
#if UNITY_REVERSED_Z
return Min3(depths.x, depths.y, min(depths.z, depths.w));
#else
return Max3(depths.x, depths.y, max(depths.z, depths.w));
#endif
}
bool IsVisibleAfterOcclusion(float occluderDepth, float queryClosestDepth)
{
#if UNITY_REVERSED_Z
return queryClosestDepth > occluderDepth;
#else
return queryClosestDepth < occluderDepth;
#endif
}
#endif