mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-27 06:28:26 +08:00
9 lines
121 B
GLSL
9 lines
121 B
GLSL
uniform sampler2D texture;
|
|
varying vec2 v_texcoord;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = texture2D(texture, v_texcoord);
|
|
}
|
|
|