summaryrefslogtreecommitdiffstats
path: root/src/demos/dualDepthPeeling/shaders/shade.vp
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-02-18 16:59:52 +0100
committerSven Gothel <[email protected]>2012-02-18 16:59:52 +0100
commit390ef63a8da4c3e89b2f61526b641b1b2b82f42d (patch)
treeba0fd8f3294bc9af8381796efd4a91c871615c86 /src/demos/dualDepthPeeling/shaders/shade.vp
parentd7e533dca5c70d7c07d56457764e733085136c0a (diff)
unify shader names(2)
Diffstat (limited to 'src/demos/dualDepthPeeling/shaders/shade.vp')
-rw-r--r--src/demos/dualDepthPeeling/shaders/shade.vp14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/demos/dualDepthPeeling/shaders/shade.vp b/src/demos/dualDepthPeeling/shaders/shade.vp
deleted file mode 100644
index 2f0a4ba..0000000
--- a/src/demos/dualDepthPeeling/shaders/shade.vp
+++ /dev/null
@@ -1,14 +0,0 @@
-//--------------------------------------------------------------------------------------
-// Order Independent Transparency Vertex Shader
-//
-// Author: Louis Bavoil
-//
-// Copyright (c) NVIDIA Corporation. All rights reserved.
-//--------------------------------------------------------------------------------------
-
-vec3 ShadeVertex()
-{
- float diffuse = abs(normalize(gl_NormalMatrix * gl_Normal).z);
- return vec3(gl_Vertex.xy, diffuse);
-}