summaryrefslogtreecommitdiffstats
path: root/src/demos/dualDepthPeeling/shaders/dual_peeling_blend_vertex.glsl
diff options
context:
space:
mode:
authorAlexandra Bokinsky <abokinsky@geometrictoolsinc.com>2011-03-15 11:45:09 -0400
committerAlexandra Bokinsky <abokinsky@geometrictoolsinc.com>2011-03-15 11:45:09 -0400
commit2db5af1e1a64d7048ce2f0db4b83d8b10c7f734d (patch)
treef0700a1dc4fc08315cf0a2c36c209c96c0260965 /src/demos/dualDepthPeeling/shaders/dual_peeling_blend_vertex.glsl
parent05e3d96ff9586b2f6cd5c2841337f9be7d07c313 (diff)
Port of NVIDIA OpenGL Dual Depth Peeling demo.
http://developer.download.nvidia.com/SDK/10.5/opengl/samples.html
Diffstat (limited to 'src/demos/dualDepthPeeling/shaders/dual_peeling_blend_vertex.glsl')
-rw-r--r--src/demos/dualDepthPeeling/shaders/dual_peeling_blend_vertex.glsl13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/demos/dualDepthPeeling/shaders/dual_peeling_blend_vertex.glsl b/src/demos/dualDepthPeeling/shaders/dual_peeling_blend_vertex.glsl
new file mode 100644
index 0000000..1d0edfc
--- /dev/null
+++ b/src/demos/dualDepthPeeling/shaders/dual_peeling_blend_vertex.glsl
@@ -0,0 +1,13 @@
+//--------------------------------------------------------------------------------------
+// Order Independent Transparency with Dual Depth Peeling
+//
+// Author: Louis Bavoil
+// Email: sdkfeedback@nvidia.com
+//
+// Copyright (c) NVIDIA Corporation. All rights reserved.
+//--------------------------------------------------------------------------------------
+
+void main(void)
+{
+ gl_Position = gl_ModelViewMatrix * gl_Vertex;
+}