Files
loop/shader/background.frag
T
2021-02-21 11:27:27 +01:00

11 lines
139 B
GLSL

#version 430 core
in vec2 gTexPos;
out vec4 fColor;
uniform sampler2D aTexture;
void main()
{
fColor = texture(aTexture, gTexPos);
}