mirror of
https://git.mirrors.martin98.com/https://github.com/SoftFever/OrcaSlicer.git
synced 2025-06-04 11:25:39 +08:00
10 lines
170 B
GLSL
10 lines
170 B
GLSL
#version 110
|
|
|
|
const vec3 ORANGE = vec3(0.8, 0.4, 0.0);
|
|
uniform vec4 uniform_color;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = uniform_color;
|
|
//gl_FragColor = vec4(ORANGE, 1.0);
|
|
} |