aboutsummaryrefslogtreecommitdiff
path: root/Gem/examples/12.multi_screen_projection/nfp_33.frag
diff options
context:
space:
mode:
authorTravis CI <zmoelnig@travis-ci.umlaeute.mur.at>2015-03-19 19:32:08 +0000
committerTravis CI <zmoelnig@travis-ci.umlaeute.mur.at>2015-03-19 19:32:08 +0000
commit095b7e513f736567848173f2572d8b329ad75af9 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /Gem/examples/12.multi_screen_projection/nfp_33.frag
parent15b30fe20b401d079c2b3c6a8e77eee827813de3 (diff)
Gem 206d71791bc3642e8c5391a4c59c30ba7411fab8 osx/x86_64
built 'coverity_scan:206d71791bc3642e8c5391a4c59c30ba7411fab8' for osx/x86_64
Diffstat (limited to 'Gem/examples/12.multi_screen_projection/nfp_33.frag')
-rw-r--r--Gem/examples/12.multi_screen_projection/nfp_33.frag18
1 files changed, 0 insertions, 18 deletions
diff --git a/Gem/examples/12.multi_screen_projection/nfp_33.frag b/Gem/examples/12.multi_screen_projection/nfp_33.frag
deleted file mode 100644
index e3ce36c..0000000
--- a/Gem/examples/12.multi_screen_projection/nfp_33.frag
+++ /dev/null
@@ -1,18 +0,0 @@
-#extension GL_ARB_texture_rectangle : enable
-
-uniform sampler2DRect MyTex;
-uniform float Sl,Sr,St,Sb; // shade size
-varying vec2 pos;
-
-
-void main (void)
-{
- vec4 color = texture2DRect(MyTex, gl_TexCoord[0].st);
-
- color.a *=min(1.,pos.x/Sl);
- color.a *=min(1.,(1.-pos.x)/Sr);
- color.a *=min(1.,pos.y/St);
- color.a *=min(1.,(1.-pos.y)/Sb);
-
- gl_FragColor = color;
-}