mirror of
https://github.com/edubart/otclient.git
synced 2025-04-30 09:39:21 +02:00
9 lines
140 B
GLSL
9 lines
140 B
GLSL
uniform float u_Time;
|
|
uniform sampler2D u_Tex0;
|
|
varying vec2 v_TexCoord;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = texture2D(u_Tex0, v_TexCoord);
|
|
}
|