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

static_cache_manager.cc « intern « realtime_compositor « compositor « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: da78412a815c7435c26d745d1c10614057fd2944 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/* SPDX-License-Identifier: GPL-2.0-or-later */

#include <memory>

#include "BLI_math_vec_types.hh"

#include "COM_morphological_distance_feather_weights.hh"
#include "COM_symmetric_blur_weights.hh"
#include "COM_symmetric_separable_blur_weights.hh"

#include "COM_static_cache_manager.hh"

namespace blender::realtime_compositor {

/* --------------------------------------------------------------------
 * Static Cache Manager.
 */

void StaticCacheManager::reset()
{
  /* First, delete all resources that are no longer needed. */
  symmetric_blur_weights_.remove_if([](auto item) { return !item.value->needed; });
  symmetric_separable_blur_weights_.remove_if([](auto item) { return !item.value->needed; });
  morphological_distance_feather_weights_.remove_if([](auto item) { return !item.value->needed; });

  /* Second, reset the needed status of the remaining resources to false to ready them to track
   * their needed status for the next evaluation. */
  for (auto &value : symmetric_blur_weights_.values()) {
    value->needed = false;
  }
  for (auto &value : symmetric_separable_blur_weights_.values()) {
    value->needed = false;
  }
  for (auto &value : morphological_distance_feather_weights_.values()) {
    value->needed = false;
  }
}

SymmetricBlurWeights &StaticCacheManager::get_symmetric_blur_weights(int type, float2 radius)
{
  const SymmetricBlurWeightsKey key(type, radius);

  auto &weights = *symmetric_blur_weights_.lookup_or_add_cb(
      key, [&]() { return std::make_unique<SymmetricBlurWeights>(type, radius); });

  weights.needed = true;
  return weights;
}

SymmetricSeparableBlurWeights &StaticCacheManager::get_symmetric_separable_blur_weights(
    int type, float radius)
{
  const SymmetricSeparableBlurWeightsKey key(type, radius);

  auto &weights = *symmetric_separable_blur_weights_.lookup_or_add_cb(
      key, [&]() { return std::make_unique<SymmetricSeparableBlurWeights>(type, radius); });

  weights.needed = true;
  return weights;
}

MorphologicalDistanceFeatherWeights &StaticCacheManager::
    get_morphological_distance_feather_weights(int type, int radius)
{
  const MorphologicalDistanceFeatherWeightsKey key(type, radius);

  auto &weights = *morphological_distance_feather_weights_.lookup_or_add_cb(
      key, [&]() { return std::make_unique<MorphologicalDistanceFeatherWeights>(type, radius); });

  weights.needed = true;
  return weights;
}

}  // namespace blender::realtime_compositor