Files
loop/shader/texture/simple.frag
T
2023-03-07 22:53:32 +00:00

11 lines
149 B
GLSL

#version 450 core
in vec2 vTexPos;
out vec4 fColor;
uniform sampler2D screenTexture;
void main()
{
fColor = texture(screenTexture, vTexPos);
}