1
0
Fork 0
fgdata/Shaders/HDR/trivial.frag
2021-07-23 07:46:05 +02:00

12 lines
139 B
GLSL

#version 330 core
out vec4 fragColor;
in vec2 texCoord;
uniform sampler2D tex;
void main()
{
fragColor = texture(tex, texCoord);
}