Update MoltenVK/MoltenVK/GPUObjects/MVKPipeline.h

Renamed _maxVertexInputBindingBufferCount to kMVKMaxVertexInputBindingBufferCount.
This commit is contained in:
Bill Hollings 2024-05-04 15:33:53 -04:00 committed by GitHub
parent 5649fb3fd3
commit 2eea02df56
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -431,7 +431,7 @@ protected:
uint32_t _tessCtlLevelBufferIndex = 0;
static constexpr uint32_t kMVKMaxVertexInputBindingBufferCount = 31u; // Taken from Metal Feature Set Table. Highest value out of all present GPUs
bool _isVertexInputBindingUsed[_maxVertexInputBindingBufferCount] = { false };
bool _isVertexInputBindingUsed[kMVKMaxVertexInputBindingBufferCount] = { false };
bool _primitiveRestartEnable = true;
bool _hasRasterInfo = false;
bool _needsVertexSwizzleBuffer = false;