mirror of
https://git.mirrors.martin98.com/https://github.com/bambulab/BambuStudio.git
synced 2025-08-15 16:45:55 +08:00
10 lines
112 B
GLSL
10 lines
112 B
GLSL
#version 140
|
|
|
|
uniform vec4 uniform_color;
|
|
|
|
out vec4 frag_color;
|
|
void main()
|
|
{
|
|
frag_color = uniform_color;
|
|
}
|