summaryrefslogtreecommitdiff
path: root/shaders/0ad/3.shader_test
diff options
context:
space:
mode:
Diffstat (limited to 'shaders/0ad/3.shader_test')
-rw-r--r--shaders/0ad/3.shader_test17
1 files changed, 0 insertions, 17 deletions
diff --git a/shaders/0ad/3.shader_test b/shaders/0ad/3.shader_test
deleted file mode 100644
index 30ba541..0000000
--- a/shaders/0ad/3.shader_test
+++ /dev/null
@@ -1,17 +0,0 @@
-[require]
-GLSL >= 1.10
-
-[fragment shader]
-uniform vec4 color;
-void main()
-{
- gl_FragColor = color;
-}
-
-[vertex shader]
-attribute vec4 position;
-void main()
-{
- gl_Position = position;
-}
-