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

object_particle_dot_frag.glsl « shaders « modes « draw « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e8bf788470192fc2093575de24680f0f60b17639 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52

uniform vec3 color;
uniform vec3 outlineColor;
uniform sampler1D ramp;

in vec4 radii;
flat in float finalVal;

out vec4 fragColor;

void main() {
	float dist = length(gl_PointCoord - vec2(0.5));

// transparent outside of point
// --- 0 ---
// smooth transition
// --- 1 ---
// pure outline color
// --- 2 ---
// smooth transition
// --- 3 ---
// pure point color
// ...
// dist = 0 at center of point

	float midStroke = 0.5 * (radii[1] + radii[2]);

	if (dist > midStroke) {
		if (finalVal < 0.0) {
			fragColor.rgb = outlineColor;
		}
		else {
			fragColor.rgb = texture(ramp, finalVal).rgb;
		}

		fragColor.a = mix(1.0, 0.0, smoothstep(radii[1], radii[0], dist));
	}
	else {
		if (finalVal < 0.0) {
			fragColor.rgb = mix(color, outlineColor, smoothstep(radii[3], radii[2], dist));
		}
		else {
			fragColor.rgb = texture(ramp, finalVal).rgb;
		}

		fragColor.a = 1.0;
	}

	if (fragColor.a == 0.0) {
		discard;
	}
}