GPUState: Fix enum max value for enum operator macro

Simple oversight.
This commit is contained in:
2021-11-01 12:08:46 +01:00
parent 28eaa81f1e
commit 894096a528

View File

@@ -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.