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

COM_Enums.cc « intern « compositor « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 152919f7bb5fffa2b8f5efd4890225b40cb598c4 (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
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright 2021 Blender Foundation. */

#include "COM_Enums.h"

namespace blender::compositor {

void expand_area_for_sampler(rcti &area, PixelSampler sampler)
{
  switch (sampler) {
    case PixelSampler::Nearest:
      break;
    case PixelSampler::Bilinear:
      area.xmax += 1;
      area.ymax += 1;
      break;
    case PixelSampler::Bicubic:
      area.xmin -= 1;
      area.xmax += 2;
      area.ymin -= 1;
      area.ymax += 2;
      break;
  }
}

std::ostream &operator<<(std::ostream &os, const eCompositorPriority &priority)
{
  switch (priority) {
    case eCompositorPriority::High: {
      os << "Priority::High";
      break;
    }
    case eCompositorPriority::Medium: {
      os << "Priority::Medium";
      break;
    }
    case eCompositorPriority::Low: {
      os << "Priority::Low";
      break;
    }
  }
  return os;
}

std::ostream &operator<<(std::ostream &os, const eWorkPackageState &execution_state)
{
  switch (execution_state) {
    case eWorkPackageState::NotScheduled: {
      os << "ExecutionState::NotScheduled";
      break;
    }
    case eWorkPackageState::Scheduled: {
      os << "ExecutionState::Scheduled";
      break;
    }
    case eWorkPackageState::Executed: {
      os << "ExecutionState::Executed";
      break;
    }
  }
  return os;
}

}  // namespace blender::compositor