Skip to content
Permalink
Browse files
Merge pull request #10859 from tellowkrinkle/UniformBufferSize
VideoCommon: Increase uniform stream buffer size to 64mb
  • Loading branch information
JMC47 committed Oct 20, 2022
2 parents 9aece18 + 89ae060 commit 9222956
Showing 1 changed file with 1 addition and 1 deletion.
@@ -90,7 +90,7 @@ class VertexManagerBase
// Texel buffer will fit the maximum size of an encoded GX texture. 1024x1024, RGBA8 = 4MB.
static constexpr u32 VERTEX_STREAM_BUFFER_SIZE = 48 * 1024 * 1024;
static constexpr u32 INDEX_STREAM_BUFFER_SIZE = 8 * 1024 * 1024;
static constexpr u32 UNIFORM_STREAM_BUFFER_SIZE = 32 * 1024 * 1024;
static constexpr u32 UNIFORM_STREAM_BUFFER_SIZE = 64 * 1024 * 1024;
static constexpr u32 TEXEL_STREAM_BUFFER_SIZE = 16 * 1024 * 1024;

VertexManagerBase();

0 comments on commit 9222956

Please sign in to comment.