summaryrefslogtreecommitdiffstats
path: root/src/demos/dualDepthPeeling/shaders/wsum_init.fp
diff options
context:
space:
mode:
Diffstat (limited to 'src/demos/dualDepthPeeling/shaders/wsum_init.fp')
-rw-r--r--src/demos/dualDepthPeeling/shaders/wsum_init.fp16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/demos/dualDepthPeeling/shaders/wsum_init.fp b/src/demos/dualDepthPeeling/shaders/wsum_init.fp
deleted file mode 100644
index 5cccb14..0000000
--- a/src/demos/dualDepthPeeling/shaders/wsum_init.fp
+++ /dev/null
@@ -1,16 +0,0 @@
-//--------------------------------------------------------------------------------------
-// Order Independent Transparency with Weighted Sums
-//
-// Author: Louis Bavoil
-//
-// Copyright (c) NVIDIA Corporation. All rights reserved.
-//--------------------------------------------------------------------------------------
-
-vec4 ShadeFragment();
-
-void main(void)
-{
- vec4 color = ShadeFragment();
- gl_FragColor = vec4(color.rgb * color.a, color.a);
-}