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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Pozo <pragma37@gmail.com>2022-11-10 19:43:53 +0300
committerMiguel Pozo <pragma37@gmail.com>2022-11-10 19:43:53 +0300
commitacaa736037eef7d36d5501622a282169d1bf2a4e (patch)
treeb7cfbd2b8c2887c3139c5e1f9f1de14560c32642
parent04eab3fd3978cfafa7cc530b3dcb358ad1848dad (diff)
Fix: GPU: Set the last enum in ENUM_OPERATORS
-rw-r--r--source/blender/gpu/intern/gpu_node_graph.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/intern/gpu_node_graph.h b/source/blender/gpu/intern/gpu_node_graph.h
index de0a0687b13..2f617713749 100644
--- a/source/blender/gpu/intern/gpu_node_graph.h
+++ b/source/blender/gpu/intern/gpu_node_graph.h
@@ -66,7 +66,7 @@ typedef enum {
GPU_NODE_TAG_COMPOSITOR = (1 << 6),
} eGPUNodeTag;
-ENUM_OPERATORS(eGPUNodeTag, GPU_NODE_TAG_FUNCTION)
+ENUM_OPERATORS(eGPUNodeTag, GPU_NODE_TAG_COMPOSITOR)
struct GPUNode {
struct GPUNode *next, *prev;