vk_rasterizer: Bump vertex buffer size

* Helps with the stuttering, indicating the issue is with the vertex buffer somehow
This commit is contained in:
GPUCode
2022-09-25 21:59:35 +03:00
parent 64d809f06a
commit e1f6b88e7b

View File

@@ -93,7 +93,7 @@ constexpr VertexLayout RasterizerVulkan::HardwareVertex::GetVertexLayout() {
return layout;
}
constexpr u32 VERTEX_BUFFER_SIZE = 16 * 1024 * 1024;
constexpr u32 VERTEX_BUFFER_SIZE = 128 * 1024 * 1024;
constexpr u32 INDEX_BUFFER_SIZE = 2 * 1024 * 1024;
constexpr u32 UNIFORM_BUFFER_SIZE = 2 * 1024 * 1024;
constexpr u32 TEXTURE_BUFFER_SIZE = 2 * 1024 * 1024;