diff options
Diffstat (limited to 'src/demos/dualDepthPeeling/shaders/wsum_final.vp')
-rw-r--r-- | src/demos/dualDepthPeeling/shaders/wsum_final.vp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/demos/dualDepthPeeling/shaders/wsum_final.vp b/src/demos/dualDepthPeeling/shaders/wsum_final.vp new file mode 100644 index 0000000..8264811 --- /dev/null +++ b/src/demos/dualDepthPeeling/shaders/wsum_final.vp @@ -0,0 +1,13 @@ +//-------------------------------------------------------------------------------------- +// Order Independent Transparency with Weighted Sums +// +// Author: Louis Bavoil +// Email: [email protected] +// +// Copyright (c) NVIDIA Corporation. All rights reserved. +//-------------------------------------------------------------------------------------- + +void main(void) +{ + gl_Position = gl_ModelViewMatrix * gl_Vertex; +} |