Files
drags-and-nerds/v1-com-officielle/glitcher/lib/base.frag
T

6 lines
143 B
GLSL

varying highp vec2 vTextureCoord;
uniform sampler2D uImageSampler;
void main() {
gl_FragColor = texture2D(uImageSampler, vTextureCoord);
}