7 lines
133 B
Forth
7 lines
133 B
Forth
|
#version 100
|
||
|
precision highp float;
|
||
|
varying vec2 v_uv;
|
||
|
uniform sampler2D u_tex;
|
||
|
void main(){
|
||
|
gl_FragColor = texture2D(u_tex,v_uv);
|
||
|
}
|