mkxp-z/shader/simple.frag

7 lines
132 B
GLSL

uniform sampler2D v_texture;
in vec2 v_texCoord;
out vec4 fragColor;
void main() { fragColor = texture(v_texture, v_texCoord); }