[vulkan] Increase main staging buffer to 32MB

1k 32bpp sky textures need 24MB to load. Though there's always better
handling of running out of stating buffer (ie, flushing and trying
again).
This commit is contained in:
Bill Currie 2021-08-02 15:12:29 +09:00
parent 421047328a
commit 42dc30ec29

View file

@ -236,8 +236,9 @@ Vulkan_CreateDevice (vulkan_ctx_t *ctx)
void
Vulkan_CreateStagingBuffers (vulkan_ctx_t *ctx)
{
// FIXME configurable?
ctx->staging = QFV_CreateStagingBuffer (ctx->device, "vulkan_ctx",
16*1024*1024, ctx->cmdpool);
32*1024*1024, ctx->cmdpool);
}
void