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

gpencil_depth_merge_frag.glsl « shaders « gpencil « engines « draw « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9723ea307c36638f076a4011e25f1c57635917e8 (plain)
1
2
3
4
5
6
7
8
9
10
11

void main()
{
  float depth = textureLod(depthBuf, gl_FragCoord.xy / vec2(textureSize(depthBuf, 0)), 0).r;
  if (strokeOrder3d) {
    gl_FragDepth = depth;
  }
  else {
    gl_FragDepth = (depth != 0.0) ? gl_FragCoord.z : 1.0;
  }
}