summaryrefslogtreecommitdiffstats
path: root/src/demos/dualDepthPeeling/shaders/dual_peeling_blend.fp
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-02-18 16:59:10 +0100
committerSven Gothel <[email protected]>2012-02-18 16:59:10 +0100
commitd7e533dca5c70d7c07d56457764e733085136c0a (patch)
tree33623050fb5dd3967de8fd455549c15ae4c0097e /src/demos/dualDepthPeeling/shaders/dual_peeling_blend.fp
parentabe9a0f08f45513017f272d61572421b93e3231a (diff)
unify shader names
Diffstat (limited to 'src/demos/dualDepthPeeling/shaders/dual_peeling_blend.fp')
-rw-r--r--src/demos/dualDepthPeeling/shaders/dual_peeling_blend.fp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/demos/dualDepthPeeling/shaders/dual_peeling_blend.fp b/src/demos/dualDepthPeeling/shaders/dual_peeling_blend.fp
new file mode 100644
index 0000000..3ba7cf9
--- /dev/null
+++ b/src/demos/dualDepthPeeling/shaders/dual_peeling_blend.fp
@@ -0,0 +1,17 @@
+//--------------------------------------------------------------------------------------
+// Order Independent Transparency with Dual Depth Peeling
+//
+// Author: Louis Bavoil
+//
+// 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;
+}