8 lines
162 B
GLSL
8 lines
162 B
GLSL
varying highp vec2 vTextureCoord;
|
|
|
|
uniform sampler2D uSampler;
|
|
|
|
|
|
void main(void) {
|
|
gl_FragColor = texture2D(uSampler, vec2(vTextureCoord.x, vTextureCoord.y));
|
|
}
|