summaryrefslogtreecommitdiffstats
path: root/cwd/shaders/fbo.fs
blob: df624b336f96b0bd9d60c4f6fe7f9914214ed39c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#version 330 core

out vec4 FragColor;
in vec2 TexCoords;

uniform sampler2D inputTexture;

void main()
{
    FragColor = texture(inputTexture, TexCoords);
}