mirror of
https://github.com/zhenyan121/Cubed.git
synced 2026-06-17 16:17:02 +08:00
11 lines
117 B
GLSL
11 lines
117 B
GLSL
#version 460
|
|
|
|
out vec4 frag_color;
|
|
|
|
uniform vec3 color;
|
|
|
|
void main(void) {
|
|
|
|
frag_color = vec4(color, 1.0);
|
|
|
|
} |