fffiloni's picture
Migrated from GitHub
2252f3d verified
raw
history blame contribute delete
157 Bytes
#version 330 core
out vec4 FragColor;
in vec2 TexCoord;
uniform sampler2D screenTexture;
void main()
{
FragColor = texture(screenTexture, TexCoord);
}