mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-17 10:32:20 +00:00
9 lines
104 B
GLSL
9 lines
104 B
GLSL
#version 110
|
|
|
|
uniform vec3 uniform_color;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = vec4(uniform_color, 1.0);
|
|
}
|