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

edit_mesh_overlay_mesh_analysis_vert.glsl « shaders « modes « draw « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 98cb788b75da8efbd86b88e1aaf5a501275b6aa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
uniform mat4 ModelMatrix;

in vec3 pos;
in vec4 weight_color;

#ifdef FACE_COLOR
flat out vec4 weightColor;
#endif

#ifdef VERTEX_COLOR
out vec4 weightColor;
#endif

void main()
{
  vec3 world_pos = point_object_to_world(pos);
  gl_Position = point_world_to_ndc(world_pos);
  weightColor = vec4(weight_color.rgb, 1.0);

#ifdef USE_WORLD_CLIP_PLANES
  world_clip_planes_calc_clip_distance(world_pos);
#endif
}