From 75bd206416b857409a59b293bf978cee6161ad21 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Tue, 28 Apr 2026 20:19:35 +0200 Subject: [PATCH] Fix regression crash on Vulkan when clearing many textures at once --- Source/Engine/GraphicsDevice/Vulkan/GPUContextVulkan.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Engine/GraphicsDevice/Vulkan/GPUContextVulkan.h b/Source/Engine/GraphicsDevice/Vulkan/GPUContextVulkan.h index 819a8ed6c..2276b0a3f 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/GPUContextVulkan.h +++ b/Source/Engine/GraphicsDevice/Vulkan/GPUContextVulkan.h @@ -108,7 +108,7 @@ private: #if COMPILE_WITH_PROFILER void* _tracyContext; #endif - Array> _pendingClears; + Array _pendingClears; typedef Array DescriptorPoolArray; Dictionary _descriptorPools;