Blender V5.0
image_enums.hh
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2021 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
8
9#pragma once
10
11#include "BLI_utildefines.h"
12
13namespace blender::image_engine {
14
15/* Shader parameters. */
16enum class ImageDrawFlags {
18 SHOW_ALPHA = (1 << 0),
19 APPLY_ALPHA = (1 << 1),
20 SHUFFLING = (1 << 2),
21 DEPTH = (1 << 3)
22};
24
25} // namespace blender::image_engine
#define ENUM_OPERATORS(_type, _max)