From b5899a2bf9e5253126b3c312252f35e8448a2a60 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Mon, 2 Sep 2024 10:58:38 -0400 Subject: [PATCH] hk: shrink cmd bo less wasteful Signed-off-by: Alyssa Rosenzweig Part-of: --- src/asahi/vulkan/hk_cmd_pool.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/asahi/vulkan/hk_cmd_pool.h b/src/asahi/vulkan/hk_cmd_pool.h index dbac305f833..2e485d25f0b 100644 --- a/src/asahi/vulkan/hk_cmd_pool.h +++ b/src/asahi/vulkan/hk_cmd_pool.h @@ -11,8 +11,7 @@ #include "vk_command_pool.h" -/* XXX: FIXME */ -#define HK_CMD_BO_SIZE 1024 * 1024 +#define HK_CMD_BO_SIZE 1024 * 128 /* Recyclable command buffer BO, used for both push buffers and upload */ struct hk_cmd_bo {