12 lines
128 B
GLSL
Raw Normal View History

2025-01-22 17:22:38 +01:00
#version 110
uniform sampler2D texy;
varying vec2 texCoord;
void main()
{
gl_FragData[0] = texture2D(texy, texCoord);
}