summaryrefslogtreecommitdiff
path: root/resources/quad.frag
blob: a23b7fafc037bfae7be4d76ca7100cc70a554839 (plain)
1
2
3
4
5
6
7
8
9
10
11
#version 330 core

in vec2 UV;

out vec3 color;

uniform sampler2D textureSampler;

void main() {
  color = texture(textureSampler, UV).rgb;
}