mirror of
https://github.com/TheRedShip/RT_GPU.git
synced 2025-09-27 10:48:34 +02:00
9 lines
158 B
GLSL
9 lines
158 B
GLSL
#version 430 core
|
|
in vec2 TexCoords;
|
|
out vec4 FragColor;
|
|
|
|
uniform sampler2D screenTexture;
|
|
|
|
void main() {
|
|
FragColor = texture(screenTexture, TexCoords);
|
|
} |