mirror of
https://github.com/bloeys/nmage.git
synced 2025-12-29 13:28:20 +00:00
10 lines
101 B
GLSL
Executable File
10 lines
101 B
GLSL
Executable File
#version 460 core
|
|
|
|
uniform vec3 c;
|
|
|
|
out vec4 fragColor;
|
|
|
|
void main() {
|
|
fragColor = vec4(c, 1);
|
|
}
|