mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-15 15:42:35 +00:00
10 lines
163 B
GLSL
10 lines
163 B
GLSL
#version 330 core
|
|
out vec4 FragColor;
|
|
|
|
in vec2 outTexCoords;
|
|
|
|
uniform sampler2D screenTexture;
|
|
|
|
void main() {
|
|
FragColor = texture(screenTexture, outTexCoords);
|
|
} |