mirror of
https://github.com/Bithack/principia.git
synced 2026-06-24 02:04:08 +00:00
11 lines
152 B
GLSL
11 lines
152 B
GLSL
uniform lowp sampler2D tex_0;
|
|
UNIFORMS
|
|
|
|
varying lowp vec2 FS_texcoord;
|
|
VARYINGS
|
|
|
|
void main(void)
|
|
{
|
|
gl_FragColor = texture2D(tex_0, FS_texcoord);
|
|
}
|
|
|