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

object_particle_dot_vert.glsl « shaders « modes « draw « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f98ae9a9515369a6e26df24cb278aef4aa27da5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36

uniform float pixel_size;
uniform float size;

in vec3 pos;
in float val;

out vec4 radii;
flat out float finalVal;

void main()
{
  vec3 world_pos = point_object_to_world(pos);

  float view_z = dot(ViewMatrixInverse[2].xyz, world_pos - ViewMatrixInverse[3].xyz);

  bool is_persp = (ProjectionMatrix[3][3] == 0.0);
  float psize = (is_persp) ? (size / (-view_z * pixel_size)) : (size / pixel_size);
  gl_Position = point_world_to_ndc(world_pos);

  gl_PointSize = psize;

  // calculate concentric radii in pixels
  float radius = 0.5 * psize;

  // start at the outside and progress toward the center
  radii[0] = radius;
  radii[1] = radius - 1.0;
  radii[2] = radius - 1.0;
  radii[3] = radius - 2.0;

  // convert to PointCoord units
  radii /= psize;

  finalVal = val;
}