mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-05-24 23:27:46 +08:00
9 lines
93 B
GLSL
9 lines
93 B
GLSL
#version 110
|
|
|
|
uniform vec4 uniform_color;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = uniform_color;
|
|
}
|