cc3dsfs/shaders/no_effect_fragment_shader.frag
2024-12-03 06:38:33 +01:00

6 lines
101 B
GLSL

uniform sampler2D Texture0;
void main() {
gl_FragColor = texture2D(Texture0, gl_TexCoord[0].xy);
}