aboutsummaryrefslogtreecommitdiff
path: root/Gem/examples/10.glsl/multitexture_rect.vert
diff options
context:
space:
mode:
Diffstat (limited to 'Gem/examples/10.glsl/multitexture_rect.vert')
-rw-r--r--Gem/examples/10.glsl/multitexture_rect.vert11
1 files changed, 0 insertions, 11 deletions
diff --git a/Gem/examples/10.glsl/multitexture_rect.vert b/Gem/examples/10.glsl/multitexture_rect.vert
deleted file mode 100644
index 2cade19..0000000
--- a/Gem/examples/10.glsl/multitexture_rect.vert
+++ /dev/null
@@ -1,11 +0,0 @@
-varying vec2 texcoord1;
-varying vec2 texcoord2;
-
-void main()
-{
-
- texcoord1 = (gl_TextureMatrix[0] * gl_MultiTexCoord0).st;
- texcoord2 = (gl_TextureMatrix[1] * gl_MultiTexCoord1).st;
- gl_Position = ftransform();
-
-}