aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/scenegraph/shaders/vertexcolor_core.vert
diff options
context:
space:
mode:
Diffstat (limited to 'src/quick/scenegraph/shaders/vertexcolor_core.vert')
-rw-r--r--src/quick/scenegraph/shaders/vertexcolor_core.vert15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/quick/scenegraph/shaders/vertexcolor_core.vert b/src/quick/scenegraph/shaders/vertexcolor_core.vert
deleted file mode 100644
index 219b840913..0000000000
--- a/src/quick/scenegraph/shaders/vertexcolor_core.vert
+++ /dev/null
@@ -1,15 +0,0 @@
-#version 150 core
-
-in vec4 vertexCoord;
-in vec4 vertexColor;
-
-out vec4 color;
-
-uniform mat4 matrix;
-uniform float opacity;
-
-void main()
-{
- gl_Position = matrix * vertexCoord;
- color = vertexColor * opacity;
-} \ No newline at end of file