funny-animated-gif-from-pro.../shaders/fragment.glsl

9 lines
132 B
GLSL

#version 330 core
in vec2 vTexCoord;
unfirom sampler2D aTexture0;
void main() {
gl_FragColor = texture(aTexture0, vTexCoord);
}