11 lines
156 B
GLSL
11 lines
156 B
GLSL
precision mediump float;
|
|
|
|
uniform sampler2D texture;
|
|
|
|
varying vec2 pass_TexCoords;
|
|
|
|
void main() {
|
|
|
|
gl_FragColor = texture2D(texture, pass_TexCoords);
|
|
|
|
} |