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:
authorClément Foucault <foucault.clem@gmail.com>2021-11-01 14:08:46 +0300
committerClément Foucault <foucault.clem@gmail.com>2021-11-01 14:08:46 +0300
commit894096a5287f7d25a02338dd5188b67cb9328851 (patch)
tree72a6fe823cae7de80707d13972867a7a46c22696 /source/blender/gpu
parent28eaa81f1e9a59c41b58834fcef6b5f3581a2581 (diff)
GPUState: Fix enum max value for enum operator macro
Simple oversight.
Diffstat (limited to 'source/blender/gpu')
-rw-r--r--source/blender/gpu/GPU_state.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/GPU_state.h b/source/blender/gpu/GPU_state.h
index a338728804c..1c1211d2a3e 100644
--- a/source/blender/gpu/GPU_state.h
+++ b/source/blender/gpu/GPU_state.h
@@ -42,7 +42,7 @@ typedef enum eGPUBarrier {
GPU_BARRIER_SHADER_STORAGE = (1 << 2),
} eGPUBarrier;
-ENUM_OPERATORS(eGPUBarrier, GPU_BARRIER_TEXTURE_FETCH)
+ENUM_OPERATORS(eGPUBarrier, GPU_BARRIER_SHADER_STORAGE)
/**
* Defines the fixed pipeline blending equation.