Skip to content

Commit

Permalink
Update MoltenVK/MoltenVK/GPUObjects/MVKPipeline.h
Browse files Browse the repository at this point in the history
Renamed _maxVertexInputBindingBufferCount to kMVKMaxVertexInputBindingBufferCount.
  • Loading branch information
billhollings committed May 4, 2024
1 parent 5649fb3 commit 2eea02d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MoltenVK/MoltenVK/GPUObjects/MVKPipeline.h
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ class MVKGraphicsPipeline : public MVKPipeline {
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;
Expand Down

0 comments on commit 2eea02d

Please sign in to comment.