diff options
author | Sven Gothel <[email protected]> | 2012-02-18 16:59:10 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-02-18 16:59:10 +0100 |
commit | d7e533dca5c70d7c07d56457764e733085136c0a (patch) | |
tree | 33623050fb5dd3967de8fd455549c15ae4c0097e /src/demos/dualDepthPeeling/shaders/front_peeling_final_fragment.glsl | |
parent | abe9a0f08f45513017f272d61572421b93e3231a (diff) |
unify shader names
Diffstat (limited to 'src/demos/dualDepthPeeling/shaders/front_peeling_final_fragment.glsl')
-rw-r--r-- | src/demos/dualDepthPeeling/shaders/front_peeling_final_fragment.glsl | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/demos/dualDepthPeeling/shaders/front_peeling_final_fragment.glsl b/src/demos/dualDepthPeeling/shaders/front_peeling_final_fragment.glsl deleted file mode 100644 index dbc9a65..0000000 --- a/src/demos/dualDepthPeeling/shaders/front_peeling_final_fragment.glsl +++ /dev/null @@ -1,17 +0,0 @@ -//-------------------------------------------------------------------------------------- -// Order Independent Transparency with Depth Peeling -// -// Author: Louis Bavoil -// Email: [email protected] -// -// Copyright (c) NVIDIA Corporation. All rights reserved. -//-------------------------------------------------------------------------------------- - -uniform samplerRECT ColorTex; -uniform vec3 BackgroundColor; - -void main(void) -{ - vec4 frontColor = textureRect(ColorTex, gl_FragCoord.xy); - gl_FragColor.rgb = frontColor + BackgroundColor * frontColor.a; -} |