mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-07-04 23:55:17 +02:00
7 lines
132 B
GLSL
7 lines
132 B
GLSL
|
|
uniform sampler2D v_texture;
|
|
|
|
in vec2 v_texCoord;
|
|
|
|
out vec4 fragColor;
|
|
void main() { fragColor = texture(v_texture, v_texCoord); }
|