From 150bfa15a6b1de7d53119e2cd7cba6799adc03e9 Mon Sep 17 00:00:00 2001 From: BZLZHH Date: Sat, 21 Jun 2025 22:07:14 +0800 Subject: [PATCH] [Fix] (DiligentEngine): Increase the size of dynamic heap buffer. --- MG/MG_GL/Implementations/EGL/Diligent/EGL_impl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MG/MG_GL/Implementations/EGL/Diligent/EGL_impl.cpp b/MG/MG_GL/Implementations/EGL/Diligent/EGL_impl.cpp index 0703ae7d..7ddd1360 100644 --- a/MG/MG_GL/Implementations/EGL/Diligent/EGL_impl.cpp +++ b/MG/MG_GL/Implementations/EGL/Diligent/EGL_impl.cpp @@ -689,7 +689,7 @@ namespace MG_EGL::Diligent { auto *pFactoryVk = Diligent_GetEngineFactoryVk(); ::Diligent::EngineVkCreateInfo EngineCI; - EngineCI.DynamicHeapSize = 256 << 20; + EngineCI.DynamicHeapSize = 512 << 20; ::Diligent::SwapChainDesc SCDesc; SCDesc.ColorBufferFormat = TEX_FORMAT_RGBA8_UNORM;