mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 03:19:44 +00:00
16 lines
268 B
GLSL
16 lines
268 B
GLSL
#ifndef LIB_PARTICLE_OCCLUSION
|
|
#define LIB_PARTICLE_OCCLUSION
|
|
|
|
void applyOcclusionDiscard(in vec3 coord, float sceneDepth)
|
|
{
|
|
#if @reverseZ
|
|
if (coord.z < sceneDepth)
|
|
discard;
|
|
#else
|
|
if (coord.z * 0.5 + 0.5 > sceneDepth)
|
|
discard;
|
|
#endif
|
|
}
|
|
|
|
#endif
|