mirror of
https://github.com/azahar-emu/azahar
synced 2025-11-06 23:19:57 +01:00
rasterizer: Increase uniform buffer size (#1174)
This commit is contained in:
parent
0deb0f50b8
commit
5f81ac40c8
@ -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) {
|
||||
|
||||
@ -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 =
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user