mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-04 00:49:57 +00:00
video_core: set vertex buffer num to 16, because mvk have when using more than 16
This commit is contained in:
parent
bc4ad5e62d
commit
cc4736fa58
1 changed files with 4 additions and 0 deletions
|
@ -62,7 +62,11 @@ using BufferId = SlotId;
|
|||
using VideoCore::Surface::PixelFormat;
|
||||
using namespace Common::Literals;
|
||||
|
||||
#ifdef __APPLE__
|
||||
constexpr u32 NUM_VERTEX_BUFFERS = 16;
|
||||
#else
|
||||
constexpr u32 NUM_VERTEX_BUFFERS = 32;
|
||||
#endif
|
||||
constexpr u32 NUM_TRANSFORM_FEEDBACK_BUFFERS = 4;
|
||||
constexpr u32 NUM_GRAPHICS_UNIFORM_BUFFERS = 18;
|
||||
constexpr u32 NUM_COMPUTE_UNIFORM_BUFFERS = 8;
|
||||
|
|
Loading…
Reference in a new issue