qt6windows7/tests/manual/qopenglwidget/dockedopenglwidget/fshader.glsl
2023-10-29 23:33:08 +01:00

9 lines
121 B
GLSL

uniform sampler2D texture;
varying vec2 v_texcoord;
void main()
{
gl_FragColor = texture2D(texture, v_texcoord);
}