aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/yuv.vert
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sludge/yuv.vert')
-rw-r--r--engines/sludge/yuv.vert12
1 files changed, 0 insertions, 12 deletions
diff --git a/engines/sludge/yuv.vert b/engines/sludge/yuv.vert
deleted file mode 100644
index 28613b6c90..0000000000
--- a/engines/sludge/yuv.vert
+++ /dev/null
@@ -1,12 +0,0 @@
-attribute vec4 myVertex;
-attribute vec2 myUV0;
-
-uniform mat4 myPMVMatrix;
-
-varying vec2 varCoord;
-
-void main()
-{
- gl_Position = myPMVMatrix * myVertex;
- varCoord = myUV0.st;
-}