mirror of
https://github.com/zhenyan121/Cubed.git
synced 2026-08-09 02:07:04 +08:00
8 lines
96 B
GLSL
8 lines
96 B
GLSL
#version 460
|
|
|
|
out vec4 color;
|
|
in vec2 tc;
|
|
|
|
void main() {
|
|
color = vec4(0.0, 0.0, 1.0, 1.0);
|
|
} |