summaryrefslogtreecommitdiff
path: root/frontend/_shared/2d/shaders/orthographic.vert
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/_shared/2d/shaders/orthographic.vert')
-rw-r--r--frontend/_shared/2d/shaders/orthographic.vert13
1 files changed, 0 insertions, 13 deletions
diff --git a/frontend/_shared/2d/shaders/orthographic.vert b/frontend/_shared/2d/shaders/orthographic.vert
deleted file mode 100644
index 0356f9c..0000000
--- a/frontend/_shared/2d/shaders/orthographic.vert
+++ /dev/null
@@ -1,13 +0,0 @@
-attribute vec2 position;
-attribute vec4 color;
-
-uniform mat4 projection;
-uniform mat4 model;
-
-varying lowp vec4 VertexColor;
-
-void main() {
- vec4 fragmentPosition = projection * model * vec4(position, 1, 1);
- gl_Position = fragmentPosition;
- VertexColor = color;
-} \ No newline at end of file