aboutsummaryrefslogtreecommitdiff
path: root/tests/gl/tutorial2.frag
diff options
context:
space:
mode:
Diffstat (limited to 'tests/gl/tutorial2.frag')
-rw-r--r--tests/gl/tutorial2.frag11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/gl/tutorial2.frag b/tests/gl/tutorial2.frag
deleted file mode 100644
index faa30eaf..00000000
--- a/tests/gl/tutorial2.frag
+++ /dev/null
@@ -1,11 +0,0 @@
-#version 150
-// It was expressed that some drivers required this next line to function properly
-precision highp float;
-
-in vec3 ex_Color;
-out vec4 gl_FragColor;
-
-void main(void) {
- // Pass through our original color with full opacity.
- gl_FragColor = vec4(ex_Color,1.0);
-}