aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/scenegraph/shaders/opaquetexture.frag
blob: b7e07de3851bc1079e2627cfa0fdee9aae41cf11 (plain)
1
2
3
4
5
6
7
8
varying highp vec2 qt_TexCoord;

uniform sampler2D qt_Texture;

void main()
{
    gl_FragColor = texture2D(qt_Texture, qt_TexCoord);
}