PrusaSlicer-NonPlainar/resources/shaders/mm_contour_attr.fs
2022-03-08 10:59:12 +01:00

14 lines
351 B
GLSL

#version 110
const float EPSILON = 0.0001;
uniform vec4 uniform_color;
void main()
{
gl_FragColor = uniform_color;
// Values inside depth buffer for fragments of the contour of a selected area are offset
// by small epsilon to solve z-fighting between painted triangles and contour lines.
gl_FragDepth = gl_FragCoord.z - EPSILON;
}