From c960e280159dc85d6c3376138fa102887b65b1bb Mon Sep 17 00:00:00 2001 From: jracek Date: Wed, 26 Mar 2025 13:51:41 +0100 Subject: [PATCH] Fixed bump allocator size --- src/renderer.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer.hh b/src/renderer.hh index 46f293e..f1ccea5 100644 --- a/src/renderer.hh +++ b/src/renderer.hh @@ -23,7 +23,7 @@ class Renderer final { Renderer& operator=(const Renderer&) = delete; static constexpr size_t ORDERING_TABLE_SIZE = 4096 * 16; - static constexpr size_t BUMP_ALLOCATOR_SIZE = 8192; + static constexpr size_t BUMP_ALLOCATOR_SIZE = 8192 * 2; static void init(psyqo::GPU& gpuInstance);