mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 16:57:53 -06:00
8 lines
104 B
GLSL
8 lines
104 B
GLSL
#version 110
|
|
|
|
uniform vec3 uniform_color;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = vec4(uniform_color, 1.0);
|
|
}
|