Update MoltenVK/MoltenVK/GPUObjects/MVKPipeline.h

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

View File

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