7 lines
149 B
GLSL
7 lines
149 B
GLSL
precision mediump float;
|
|
varying vec2 v_texcoord;
|
|
uniform sampler2D tex;
|
|
|
|
void main() {
|
|
gl_FragColor = vec4(texture2D(tex, v_texcoord).rgb, 1.0);
|
|
}
|