Adds theme settings to allow change of front and back faces of the Face Orientation overlay Differential Revision: https://developer.blender.org/D6262 Reviewed by Jeroen Bakker
7 lines
100 B
GLSL
7 lines
100 B
GLSL
out vec4 fragColor;
|
|
|
|
void main()
|
|
{
|
|
fragColor = gl_FrontFacing ? colorFaceFront : colorFaceBack;
|
|
}
|