Blender V4.3
COM_Enums.h
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2021 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
5#pragma once
6
7#include "COM_defines.h"
8
9#include <ostream>
10
11struct rcti;
12
13namespace blender::compositor {
14
22 High = 0,
24 Medium = 1,
26 Low = 2,
27};
28
34 High = 2,
35 Medium = 1,
36 Low = 0,
37};
38
39enum class PixelSampler {
40 Nearest = 0,
41 Bilinear = 1,
42 Bicubic = 2,
43};
45
46std::ostream &operator<<(std::ostream &os, const eCompositorPriority &priority);
47
48} // namespace blender::compositor
local_group_size(16, 16) .push_constant(Type local_group_size(16, 16) .push_constant(Type input_tx sampler(1, ImageType::FLOAT_2D, "matte_tx") .image(0
eCompositorPriority
Possible priority settings.
Definition COM_Enums.h:33
eCompositorQuality
Possible quality settings.
Definition COM_Enums.h:20
void expand_area_for_sampler(rcti &area, PixelSampler sampler)
Definition COM_Enums.cc:9
std::ostream & operator<<(std::ostream &os, const eCompositorPriority &priority)
Definition COM_Enums.cc:27