Files

11 lines
163 B
Forth
Raw Permalink Normal View History

2025-05-05 14:58:54 +08:00
#version 110
2025-08-01 14:48:54 +08:00
uniform sampler2D s_texture;
2025-05-05 14:58:54 +08:00
varying vec2 Frag_UV;
varying vec4 color;
void main()
{
2025-08-01 14:48:54 +08:00
gl_FragColor = color * texture2D(s_texture, Frag_UV.st);
2025-05-05 14:58:54 +08:00
}