aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/scenegraph/shaders/32bitcolortext.frag
diff options
context:
space:
mode:
Diffstat (limited to 'src/quick/scenegraph/shaders/32bitcolortext.frag')
-rw-r--r--src/quick/scenegraph/shaders/32bitcolortext.frag9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/quick/scenegraph/shaders/32bitcolortext.frag b/src/quick/scenegraph/shaders/32bitcolortext.frag
deleted file mode 100644
index 6fdb6e6aeb..0000000000
--- a/src/quick/scenegraph/shaders/32bitcolortext.frag
+++ /dev/null
@@ -1,9 +0,0 @@
-varying highp vec2 sampleCoord;
-
-uniform sampler2D _qt_texture;
-uniform lowp float color; // just the alpha, really...
-
-void main()
-{
- gl_FragColor = texture2D(_qt_texture, sampleCoord) * color;
-}