mirror of
https://git.mirrors.martin98.com/https://github.com/bambulab/BambuStudio.git
synced 2025-08-17 15:45:53 +08:00
8 lines
119 B
GLSL
8 lines
119 B
GLSL
#version 140
|
|
uniform vec3 u_base_color;
|
|
|
|
out vec4 frag_color;
|
|
void main()
|
|
{
|
|
frag_color = vec4(u_base_color, 1.0);
|
|
} |