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

workbench_effect_cavity_frag.glsl « shaders « workbench « engines « draw « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0b571040df5030e23b853cee200d107baafab442 (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

#pragma BLENDER_REQUIRE(common_view_lib.glsl)
#pragma BLENDER_REQUIRE(workbench_common_lib.glsl)
#pragma BLENDER_REQUIRE(workbench_cavity_lib.glsl)
#pragma BLENDER_REQUIRE(workbench_curvature_lib.glsl)

#ifndef DRW_SHADER_SHARED_H

uniform sampler2D depthBuffer;
uniform sampler2D normalBuffer;
uniform usampler2D objectIdBuffer;

in vec4 uvcoordsvar;

out vec4 fragColor;

#endif

void main()
{
  float cavity = 0.0, edges = 0.0, curvature = 0.0;

#ifdef USE_CAVITY
  cavity_compute(uvcoordsvar.st, depthBuffer, normalBuffer, cavity, edges);
#endif

#ifdef USE_CURVATURE
  curvature_compute(uvcoordsvar.st, objectIdBuffer, normalBuffer, curvature);
#endif

  float final_cavity_factor = clamp((1.0 - cavity) * (1.0 + edges) * (1.0 + curvature), 0.0, 4.0);

  fragColor.rgb = vec3(final_cavity_factor);
  fragColor.a = 1.0;
}