yupplemayham/Resources/shaders/GL_bubble.frag

11 lines
No EOL
140 B
GLSL

#version 330 core
in vec2 texCoord;
out vec4 FragColor;
uniform sampler2D sprite;
void main()
{
FragColor = texture(sprite, texCoord);
}