MTLStateTracker: Increase fragment buffer array size to 3

This commit is contained in:
OatmealDome 2023-12-14 14:17:07 -05:00
parent fe014dac06
commit 438c48912b
1 changed files with 1 additions and 1 deletions

View File

@ -237,7 +237,7 @@ private:
NSString* label;
id<MTLRenderPipelineState> pipeline;
std::array<id<MTLBuffer>, 2> vertex_buffers;
std::array<id<MTLBuffer>, 2> fragment_buffers;
std::array<id<MTLBuffer>, 3> fragment_buffers;
u32 width;
u32 height;
MathUtil::Rectangle<int> scissor_rect;