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