aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/scenegraph/shaders/vertexcolor.vert
diff options
context:
space:
mode:
Diffstat (limited to 'src/quick/scenegraph/shaders/vertexcolor.vert')
-rw-r--r--src/quick/scenegraph/shaders/vertexcolor.vert13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/quick/scenegraph/shaders/vertexcolor.vert b/src/quick/scenegraph/shaders/vertexcolor.vert
deleted file mode 100644
index 750d520114..0000000000
--- a/src/quick/scenegraph/shaders/vertexcolor.vert
+++ /dev/null
@@ -1,13 +0,0 @@
-attribute highp vec4 vertexCoord;
-attribute highp vec4 vertexColor;
-
-uniform highp mat4 matrix;
-uniform highp float opacity;
-
-varying lowp vec4 color;
-
-void main()
-{
- gl_Position = matrix * vertexCoord;
- color = vertexColor * opacity;
-} \ No newline at end of file