10 lines
131 B
GLSL
10 lines
131 B
GLSL
precision mediump float;
|
|
|
|
varying vec2 uv;
|
|
|
|
uniform sampler2D texture0;
|
|
|
|
void main() {
|
|
gl_FragColor = texture2D(texture0, uv);
|
|
}
|