diff options
Diffstat (limited to 'src/demos/dualDepthPeeling/shaders/dual_peeling_blend.fp')
-rw-r--r-- | src/demos/dualDepthPeeling/shaders/dual_peeling_blend.fp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/demos/dualDepthPeeling/shaders/dual_peeling_blend.fp b/src/demos/dualDepthPeeling/shaders/dual_peeling_blend.fp deleted file mode 100644 index 3ba7cf9..0000000 --- a/src/demos/dualDepthPeeling/shaders/dual_peeling_blend.fp +++ /dev/null @@ -1,17 +0,0 @@ -//-------------------------------------------------------------------------------------- -// Order Independent Transparency with Dual Depth Peeling -// -// Author: Louis Bavoil -// Email: [email protected] -// -// Copyright (c) NVIDIA Corporation. All rights reserved. -//-------------------------------------------------------------------------------------- - -uniform samplerRECT TempTex; - -void main(void) -{ - gl_FragColor = textureRect(TempTex, gl_FragCoord.xy); - // for occlusion query - if (gl_FragColor.a == 0) discard; -} |