mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-12-02 08:33:00 +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);
|
|
}
|
|
|