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

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

out vec4 FragColor;

uniform sampler2D wireColor;
uniform sampler2D wireDepth;
uniform sampler2D sceneDepth;
uniform float alpha;

void main()
{
  ivec2 uv = ivec2(gl_FragCoord.xy);
  float wire_depth = texelFetch(wireDepth, uv, 0).r;
  float scene_depth = texelFetch(sceneDepth, uv, 0).r;
  vec4 wire_color = texelFetch(wireColor, uv, 0).rgba;

  FragColor = wire_color;

  /* Modulate alpha if occluded */
  if (wire_depth > scene_depth) {
    FragColor.a *= alpha;
  }
}