Spaces:
nosyb
/
Build error

nosyb's picture
Duplicate from Yuliang/ICON
1a1f281
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);
}