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

edit_uv_faces_vert.glsl « shaders « overlay « engines « draw « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cf1018ae5f9d2895fec45ad5b19009a7e2dc62d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma BLENDER_REQUIRE(common_globals_lib.glsl)
#pragma BLENDER_REQUIRE(common_view_lib.glsl)

uniform float uvOpacity;

in vec2 u;
in int flag;

flat out vec4 finalColor;

void main()
{
  vec3 world_pos = point_object_to_world(vec3(u, 0.0));
  gl_Position = point_world_to_ndc(world_pos);

  bool is_selected = (flag & FACE_UV_SELECT) != 0;
  bool is_active = (flag & FACE_UV_ACTIVE) != 0;

  finalColor = (is_selected) ? colorFaceSelect : colorFace;
  finalColor = (is_active) ? colorEditMeshActive : finalColor;
  finalColor.a *= uvOpacity;
}