diff options
Diffstat (limited to 'src/demos/dualDepthPeeling/shader/front_peeling_init.fp')
-rw-r--r-- | src/demos/dualDepthPeeling/shader/front_peeling_init.fp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/demos/dualDepthPeeling/shader/front_peeling_init.fp b/src/demos/dualDepthPeeling/shader/front_peeling_init.fp new file mode 100644 index 0000000..fdaaa79 --- /dev/null +++ b/src/demos/dualDepthPeeling/shader/front_peeling_init.fp @@ -0,0 +1,16 @@ +//-------------------------------------------------------------------------------------- +// Order Independent Transparency with Depth Peeling +// +// Author: Louis Bavoil +// Email: [email protected] +// +// Copyright (c) NVIDIA Corporation. All rights reserved. +//-------------------------------------------------------------------------------------- + +vec4 ShadeFragment(); + +void main(void) +{ + vec4 color = ShadeFragment(); + gl_FragColor = vec4(color.rgb * color.a, 1.0 - color.a); +} |