Documentation
1
2
3
4
5
6
7
#version 330 core
out vec4 fragColor;
uniform vec4 uColor;

void main() {
    fragColor = uColor;
}