qt6windows7/tests/manual/qopenglwidget/dockedopenglwidget/fshader.glsl

9 lines
121 B
Plaintext
Raw Normal View History

2023-10-30 06:33:08 +08:00
uniform sampler2D texture;
varying vec2 v_texcoord;
void main()
{
gl_FragColor = texture2D(texture, v_texcoord);
}