aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/scenegraph/shaders/8bittextmask.frag
diff options
context:
space:
mode:
Diffstat (limited to 'src/quick/scenegraph/shaders/8bittextmask.frag')
-rw-r--r--src/quick/scenegraph/shaders/8bittextmask.frag4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/quick/scenegraph/shaders/8bittextmask.frag b/src/quick/scenegraph/shaders/8bittextmask.frag
index f2f06e8e07..44ffb279cb 100644
--- a/src/quick/scenegraph/shaders/8bittextmask.frag
+++ b/src/quick/scenegraph/shaders/8bittextmask.frag
@@ -1,9 +1,9 @@
varying highp vec2 sampleCoord;
-uniform lowp sampler2D texture;
+uniform lowp sampler2D _qt_texture;
uniform lowp vec4 color;
void main()
{
- gl_FragColor = color * texture2D(texture, sampleCoord).a;
+ gl_FragColor = color * texture2D(_qt_texture, sampleCoord).a;
} \ No newline at end of file