9 lines
121 B
Plaintext
Raw Normal View History

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