Welcome to mirror list, hosted at ThFree Co, Russian Federation.

edit_overlay_facedot_frag.glsl « shaders « modes « draw « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9b3fe6286e88972ab4e365d524cc90ed8a4b00ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12

flat in int isSelected;

out vec4 FragColor;

void main()
{
	if (isSelected != 0)
		FragColor = colorFaceDot;
	else
		FragColor = colorWireEdit;
}