aboutsummaryrefslogtreecommitdiff
path: root/Gem/examples/10.glsl/fetching.vert
diff options
context:
space:
mode:
Diffstat (limited to 'Gem/examples/10.glsl/fetching.vert')
-rw-r--r--Gem/examples/10.glsl/fetching.vert15
1 files changed, 0 insertions, 15 deletions
diff --git a/Gem/examples/10.glsl/fetching.vert b/Gem/examples/10.glsl/fetching.vert
deleted file mode 100644
index b41cc16..0000000
--- a/Gem/examples/10.glsl/fetching.vert
+++ /dev/null
@@ -1,15 +0,0 @@
-uniform sampler2D MyTex;
-varying vec4 C;
-void main()
-{
- vec4 v = vec4(gl_Vertex);
- vec4 color = texture2D(MyTex, (gl_TextureMatrix[0] * gl_MultiTexCoord0).st);
- v.z = color.r;
-// v.x += (color.b-0.5)/2.;
-// v.y += (color.g-0.5)/2.;
-
- C=color;
- gl_Position = gl_ModelViewProjectionMatrix * v;
-
-}
-