From 6899c2dbfd56fcbfe1d604dff4e8a9f90c4078a3 Mon Sep 17 00:00:00 2001 From: Jeroen Bakker Date: Fri, 13 Jun 2025 13:28:37 +0200 Subject: [PATCH] Fix #140342: Vulkan: Assert when quiting When quiting Blender the timeline doesn't get updated and an assert is triggered that the order isn't correct. The order isn't that important anymore as the mechanism has been tested. The assert was useful during initial development. This PR removes the assert as it isn't valid in all cases. --- source/blender/gpu/vulkan/vk_resource_pool.hh | 2 -- 1 file changed, 2 deletions(-) diff --git a/source/blender/gpu/vulkan/vk_resource_pool.hh b/source/blender/gpu/vulkan/vk_resource_pool.hh index 09692f0e4aa..8de987f0b72 100644 --- a/source/blender/gpu/vulkan/vk_resource_pool.hh +++ b/source/blender/gpu/vulkan/vk_resource_pool.hh @@ -25,8 +25,6 @@ template class TimelineResources : Vectoris_empty() || this->last().first <= timeline, - "Timeline must be added in order"); this->append(std::pair(timeline, item)); }