mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-05-29 01:27:38 +08: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);
|
|
}
|