mirror of
https://github.com/zhenyan121/Cubed.git
synced 2026-08-09 02:07:04 +08:00
9 lines
94 B
GLSL
9 lines
94 B
GLSL
#version 460
|
|
|
|
out vec4 color;
|
|
|
|
uniform vec4 inColor;
|
|
|
|
void main(void) {
|
|
color = inColor;
|
|
} |