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

gpu_shader_2D_point_uniform_size_varying_color_outline_aa_vert.glsl « shaders « gpu « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d3a142cc7bd3860ed04e6e09174196cf987c86d2 (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

uniform mat4 ModelViewProjectionMatrix;
uniform float size;
uniform float outlineWidth;

#if __VERSION__ == 120
  attribute vec2 pos;
  attribute vec4 color;
  varying vec4 radii;
  varying vec4 fillColor;
#else
  in vec2 pos;
  in vec4 color;
  out vec4 radii;
  out vec4 fillColor;
#endif

void main() {
	gl_Position = ModelViewProjectionMatrix * vec4(pos, 0.0, 1.0);
	gl_PointSize = size;
	fillColor = color;

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

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

	// convert to PointCoord units
	radii /= size;
}