rasterizer: Increase uniform buffer size (#1174)

This commit is contained in:
PabloMK7 2025-06-20 22:10:04 +02:00 committed by GitHub
parent 0deb0f50b8
commit 5f81ac40c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ using namespace Pica::Shader::Generator;
constexpr std::size_t VERTEX_BUFFER_SIZE = 16_MiB;
constexpr std::size_t INDEX_BUFFER_SIZE = 2_MiB;
constexpr std::size_t UNIFORM_BUFFER_SIZE = 2_MiB;
constexpr std::size_t UNIFORM_BUFFER_SIZE = 8_MiB;
constexpr std::size_t TEXTURE_BUFFER_SIZE = 2_MiB;
GLenum MakePrimitiveMode(Pica::PipelineRegs::TriangleTopology topology) {

View File

@ -31,7 +31,7 @@ using namespace Common::Literals;
using namespace Pica::Shader::Generator;
constexpr u64 STREAM_BUFFER_SIZE = 64_MiB;
constexpr u64 UNIFORM_BUFFER_SIZE = 4_MiB;
constexpr u64 UNIFORM_BUFFER_SIZE = 8_MiB;
constexpr u64 TEXTURE_BUFFER_SIZE = 2_MiB;
constexpr vk::BufferUsageFlags BUFFER_USAGE =