YoonaAI's picture
Upload 10 files
0ae44e3
raw
history blame
157 Bytes
#version 330 core
out vec4 FragColor;
in vec2 TexCoord;
uniform sampler2D screenTexture;
void main()
{
FragColor = texture(screenTexture, TexCoord);
}