12 lines
153 B
GLSL
Executable file
12 lines
153 B
GLSL
Executable file
#version 420
|
|
|
|
out vec4 FragColor;
|
|
|
|
in vec2 TexCoords;
|
|
|
|
uniform sampler2D screenTexture;
|
|
|
|
void main()
|
|
{
|
|
FragColor = texture(screenTexture, TexCoords);
|
|
}
|