blob: cf1fafa6e6aa01b5ee0d36241b7c06e87cfbe3b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#version 330 core
out vec4 FragColor;
in vec2 TexCoords;
uniform sampler2D screenTexture;
void main()
{
FragColor = vec4(
texture(screenTexture, TexCoords).rgb,
1.0);
}
|