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

gpencil_fx_glow_prepare_frag.glsl « fx « shaders « gpencil « engines « draw « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 676b9b05db9134fca7e9246d18c6b8bde21d4af6 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
uniform mat4 ProjectionMatrix;
uniform mat4 ViewMatrix;

/* ******************************************************************* */
/* create glow mask                                                    */
/* ******************************************************************* */
uniform sampler2D strokeColor;
uniform sampler2D strokeDepth;

uniform vec3 glow_color;
uniform vec3 select_color;
uniform float threshold;
uniform int mode;

out vec4 FragColor;

#define MODE_LUMINANCE 0
#define MODE_COLOR 1

/* calc luminance */
float luma(vec3 color)
{
  /* the color is linear, so do not apply tonemapping */
  return (color.r + color.g + color.b) / 3.0;
}

bool check_color(vec3 color_a, vec3 color_b)
{
  /* need round the number to avoid precision errors */
  if ((floor(color_a.r * 100) == floor(color_b.r * 100)) &&
      (floor(color_a.g * 100) == floor(color_b.g * 100)) &&
      (floor(color_a.b * 100) == floor(color_b.b * 100))) {
    return true;
  }

  return false;
}

void main()
{
  vec2 uv = vec2(gl_FragCoord.xy);

  float stroke_depth = texelFetch(strokeDepth, ivec2(uv.xy), 0).r;
  vec4 src_pixel = texelFetch(strokeColor, ivec2(uv.xy), 0);
  vec4 outcolor;

  /* is transparent */
  if (src_pixel.a == 0.0f) {
    discard;
  }

  if (mode == MODE_LUMINANCE) {
    if (luma(src_pixel.rgb) < threshold) {
      discard;
    }
  }
  else if (mode == MODE_COLOR) {
    if (!check_color(src_pixel.rgb, select_color.rgb)) {
      discard;
    }
  }
  else {
    discard;
  }

  gl_FragDepth = stroke_depth;
  FragColor = vec4(glow_color.rgb, 1.0);
}