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

overlay_extra_loose_point_frag.glsl « shaders « overlay « engines « draw « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d92b947ef899c9731113d744b691a9b2643e407a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

void main()
{
  vec2 centered = abs(gl_PointCoord - vec2(0.5));
  float dist = max(centered.x, centered.y);

  float fac = dist * dist * 4.0;
  /* Non linear blend. */
  vec4 col1 = sqrt(colorEditMeshMiddle);
  vec4 col2 = sqrt(finalColor);
  fragColor = mix(col1, col2, 0.45 + fac * 0.65);
  fragColor *= fragColor;

  lineOutput = vec4(0.0);

  /* Make the effect more like a fresnel by offsetting
   * the depth and creating mini-spheres.
   * Disabled as it has performance impact. */
  // gl_FragDepth = gl_FragCoord.z + 1e-6 * fac;
}