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

compositor_morphological_step.glsl « compositor « shaders « gpu « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6992bc2afa596ecf84245252bd3d8132539c9820 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma BLENDER_REQUIRE(common_math_lib.glsl)
#pragma BLENDER_REQUIRE(gpu_shader_compositor_texture_utilities.glsl)

void main()
{
  ivec2 texel = ivec2(gl_GlobalInvocationID.xy);

  /* Find the minimum/maximum value in the window of the given radius around the pixel. This is
   * essentially a morphological operator with a square structuring element. The LIMIT value should
   * be FLT_MAX if OPERATOR is min and FLT_MIN if OPERATOR is max. */
  float value = LIMIT;
  for (int i = -radius; i <= radius; i++) {
    value = OPERATOR(value, texture_load(input_tx, texel + ivec2(i, 0), vec4(LIMIT)).x);
  }

  /* Write the value using the transposed texel. See the execute_step_horizontal_pass method for
   * more information on the rational behind this. */
  imageStore(output_img, texel.yx, vec4(value));
}