Spaces:
Configuration error
Configuration error
File size: 159 Bytes
1ba539f |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#version 330 core
out vec4 FragColor;
in vec2 TexCoord;
uniform sampler2D screenTexture;
void main()
{
FragColor = texture(screenTexture, TexCoord);
}
|