summaryrefslogtreecommitdiff
path: root/shaders/vert.vert
diff options
context:
space:
mode:
Diffstat (limited to 'shaders/vert.vert')
-rw-r--r--shaders/vert.vert24
1 files changed, 0 insertions, 24 deletions
diff --git a/shaders/vert.vert b/shaders/vert.vert
deleted file mode 100644
index 3364718..0000000
--- a/shaders/vert.vert
+++ /dev/null
@@ -1,24 +0,0 @@
-#version 100
-
-/*
- * Copyright (C) 2017-2020 Philip Jones
- *
- * Licensed under the MIT License.
- * See either the LICENSE file, or:
- *
- * https://opensource.org/licenses/MIT
- *
- */
-
-precision lowp float;
-
-attribute vec2 position;
-attribute vec2 texcoord;
-
-varying vec2 Texcoord;
-
-void main()
-{
- Texcoord = texcoord;
- gl_Position = vec4(position, 0.0, 1.0);
-}