mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-03-28 14:56:22 +01:00
9 lines
119 B
GLSL
9 lines
119 B
GLSL
|
|
uniform sampler2D texture;
|
|
|
|
varying vec2 v_texCoord;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = texture2D(texture, v_texCoord);
|
|
}
|