Blender V4.3
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
9#pragma once
10
11#include "BLI_utildefines.h"
12
14
15/* Shader parameters. */
16enum class ImageDrawFlags {
17 Default = 0,
18 ShowAlpha = (1 << 0),
19 ApplyAlpha = (1 << 1),
20 Shuffling = (1 << 2),
21 Depth = (1 << 3)
22};
24
25} // namespace blender::draw::image_engine
#define ENUM_OPERATORS(_type, _max)