Files
RT_GPU/shaders/frag.frag
2024-12-24 00:42:47 +01:00

9 lines
158 B
GLSL

#version 430 core
in vec2 TexCoords;
out vec4 FragColor;
uniform sampler2D screenTexture;
void main() {
FragColor = texture(screenTexture, TexCoords);
}