yupplemayham/Resources/shaders/GL_bubble.frag
2024-06-21 16:59:06 -04:00

11 lines
No EOL
167 B
GLSL

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