summaryrefslogtreecommitdiffstats
path: root/tests/manual/qopenglwidget/dockedopenglwidget/fshader.glsl
blob: 8e5a4de8fce4e5f3c2acc5180562493a3656a5c6 (plain)
1
2
3
4
5
6
7
8
uniform sampler2D texture;
varying vec2 v_texcoord;

void main()
{
    gl_FragColor = texture2D(texture, v_texcoord);
}