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

10 lines
132 B
Text
Raw Normal View History

2021-01-29 04:49:11 +02:00
#version 330 core
in vec2 vTexCoord;
unfirom sampler2D aTexture0;
void main() {
gl_FragColor = texture(aTexture0, vTexCoord);
}