diff --git a/include/vkcv/Core.hpp b/include/vkcv/Core.hpp index 5939988c3dc41f4ea4c640ed1bb30795fec8a36c..010c4ec79353b764de7a682f3b9aeed5113a2fbc 100644 --- a/include/vkcv/Core.hpp +++ b/include/vkcv/Core.hpp @@ -73,10 +73,6 @@ namespace vkcv { Context m_Context; - std::unique_ptr<PassManager> m_PassManager; - std::unique_ptr<GraphicsPipelineManager> m_GraphicsPipelineManager; - std::unique_ptr<ComputePipelineManager> m_ComputePipelineManager; - std::unique_ptr<RayTracingPipelineManager> m_RayTracingPipelineManager; std::unique_ptr<DescriptorSetLayoutManager> m_DescriptorSetLayoutManager; std::unique_ptr<DescriptorSetManager> m_DescriptorSetManager; std::unique_ptr<BufferManager> m_BufferManager; @@ -86,6 +82,10 @@ namespace vkcv { std::unique_ptr<CommandStreamManager> m_CommandStreamManager; std::unique_ptr<WindowManager> m_WindowManager; std::unique_ptr<SwapchainManager> m_SwapchainManager; + std::unique_ptr<PassManager> m_PassManager; + std::unique_ptr<GraphicsPipelineManager> m_GraphicsPipelineManager; + std::unique_ptr<ComputePipelineManager> m_ComputePipelineManager; + std::unique_ptr<RayTracingPipelineManager> m_RayTracingPipelineManager; Vector<vk::CommandPool> m_CommandPools; vk::Semaphore m_RenderFinished; diff --git a/include/vkcv/Handles.hpp b/include/vkcv/Handles.hpp index c338cac3b0ff9052f832229d4ee04cf0c629ec96..f35eeaa32b903ae65756635ffa34fe16919537a6 100644 --- a/include/vkcv/Handles.hpp +++ b/include/vkcv/Handles.hpp @@ -28,6 +28,11 @@ namespace vkcv { HandleDestroyFunction m_destroy; + /** + * @brief Private internal method to destroy handle. + */ + void destroy(); + protected: /** * @brief Constructor of an invalid handle diff --git a/lib/SPIRV-Cross b/lib/SPIRV-Cross index 2d990d355a296ae1e368585810f884ebadcc4773..6fd1f75636b1c424b809ad8a84804654cf5ae48b 160000 --- a/lib/SPIRV-Cross +++ b/lib/SPIRV-Cross @@ -1 +1 @@ -Subproject commit 2d990d355a296ae1e368585810f884ebadcc4773 +Subproject commit 6fd1f75636b1c424b809ad8a84804654cf5ae48b diff --git a/lib/Vulkan-Headers b/lib/Vulkan-Headers index d192041a2fc9c9fd8ae67d8ae3f32c5511541f04..190d2cb24e90e5bf2bec0a75604a9b3586485b6d 160000 --- a/lib/Vulkan-Headers +++ b/lib/Vulkan-Headers @@ -1 +1 @@ -Subproject commit d192041a2fc9c9fd8ae67d8ae3f32c5511541f04 +Subproject commit 190d2cb24e90e5bf2bec0a75604a9b3586485b6d diff --git a/lib/Vulkan-Hpp b/lib/Vulkan-Hpp index 6fb0c202be3a13ae8e630fcc734340a6679e8502..630d8da8c6b606ac0978bda2d9a37227fd49dd32 160000 --- a/lib/Vulkan-Hpp +++ b/lib/Vulkan-Hpp @@ -1 +1 @@ -Subproject commit 6fb0c202be3a13ae8e630fcc734340a6679e8502 +Subproject commit 630d8da8c6b606ac0978bda2d9a37227fd49dd32 diff --git a/lib/VulkanMemoryAllocator b/lib/VulkanMemoryAllocator index 7942b798289f752dc23b0a79516fd8545febd718..257138b8f5686ae84491a3df9f90a77d5660c3bd 160000 --- a/lib/VulkanMemoryAllocator +++ b/lib/VulkanMemoryAllocator @@ -1 +1 @@ -Subproject commit 7942b798289f752dc23b0a79516fd8545febd718 +Subproject commit 257138b8f5686ae84491a3df9f90a77d5660c3bd diff --git a/modules/gui/lib/imgui b/modules/gui/lib/imgui index b902fa4c4490ddffb713f8153d1a65e1940e58d1..2d0baaabe62a4bd71bfc871933d9002425c45435 160000 --- a/modules/gui/lib/imgui +++ b/modules/gui/lib/imgui @@ -1 +1 @@ -Subproject commit b902fa4c4490ddffb713f8153d1a65e1940e58d1 +Subproject commit 2d0baaabe62a4bd71bfc871933d9002425c45435 diff --git a/modules/shader_compiler/lib/SPIRV-Headers b/modules/shader_compiler/lib/SPIRV-Headers index eb49bb7b1136298b77945c52b4bbbc433f7885de..41a8eb27f1a7554dadfcdd45819954eaa94935e6 160000 --- a/modules/shader_compiler/lib/SPIRV-Headers +++ b/modules/shader_compiler/lib/SPIRV-Headers @@ -1 +1 @@ -Subproject commit eb49bb7b1136298b77945c52b4bbbc433f7885de +Subproject commit 41a8eb27f1a7554dadfcdd45819954eaa94935e6 diff --git a/modules/shader_compiler/lib/glslang b/modules/shader_compiler/lib/glslang index 68821c4da8189262228bbd51e56ed75971b2d2c9..5939e32b87487fa9c72ab336ebfcc5ae26d9ab6d 160000 --- a/modules/shader_compiler/lib/glslang +++ b/modules/shader_compiler/lib/glslang @@ -1 +1 @@ -Subproject commit 68821c4da8189262228bbd51e56ed75971b2d2c9 +Subproject commit 5939e32b87487fa9c72ab336ebfcc5ae26d9ab6d diff --git a/src/vkcv/Core.cpp b/src/vkcv/Core.cpp index 9f1274b2532fbea3da59466bf42360d83c9a0ec0..70421cb8eb3c87ae661e7970206353e49bf5f14e 100644 --- a/src/vkcv/Core.cpp +++ b/src/vkcv/Core.cpp @@ -91,10 +91,7 @@ namespace vkcv { } Core::Core(Context &&context) noexcept : - m_Context(std::move(context)), m_PassManager(std::make_unique<PassManager>()), - m_GraphicsPipelineManager(std::make_unique<GraphicsPipelineManager>()), - m_ComputePipelineManager(std::make_unique<ComputePipelineManager>()), - m_RayTracingPipelineManager(std::make_unique<RayTracingPipelineManager>()), + m_Context(std::move(context)), m_DescriptorSetLayoutManager(std::make_unique<DescriptorSetLayoutManager>()), m_DescriptorSetManager(std::make_unique<DescriptorSetManager>()), m_BufferManager(std::make_unique<BufferManager>()), @@ -103,18 +100,21 @@ namespace vkcv { m_AccelerationStructureManager(std::make_unique<AccelerationStructureManager>()), m_CommandStreamManager { std::make_unique<CommandStreamManager>() }, m_WindowManager(std::make_unique<WindowManager>()), - m_SwapchainManager(std::make_unique<SwapchainManager>()), m_CommandPools(), - m_RenderFinished(), m_SwapchainImageAcquired(), m_downsampler(nullptr) { + m_SwapchainManager(std::make_unique<SwapchainManager>()), + m_PassManager(std::make_unique<PassManager>()), + m_GraphicsPipelineManager(std::make_unique<GraphicsPipelineManager>()), + m_ComputePipelineManager(std::make_unique<ComputePipelineManager>()), + m_RayTracingPipelineManager(std::make_unique<RayTracingPipelineManager>()), + m_CommandPools(), + m_RenderFinished(), + m_SwapchainImageAcquired(), + m_downsampler(nullptr) { m_CommandPools = createCommandPools( m_Context.getDevice(), generateQueueFamilyIndexSet(m_Context.getQueueManager())); m_RenderFinished = m_Context.getDevice().createSemaphore({}); m_SwapchainImageAcquired = m_Context.getDevice().createSemaphore({}); - m_PassManager->init(*this); - m_GraphicsPipelineManager->init(*this); - m_ComputePipelineManager->init(*this); - m_RayTracingPipelineManager->init(*this); m_DescriptorSetLayoutManager->init(*this); m_DescriptorSetManager->init(*this, *m_DescriptorSetLayoutManager); m_BufferManager->init(*this); @@ -123,6 +123,10 @@ namespace vkcv { m_AccelerationStructureManager->init(*this, *m_BufferManager); m_CommandStreamManager->init(*this); m_SwapchainManager->init(*this); + m_PassManager->init(*this); + m_GraphicsPipelineManager->init(*this); + m_ComputePipelineManager->init(*this); + m_RayTracingPipelineManager->init(*this); m_downsampler = std::unique_ptr<Downsampler>(new BlitDownsampler(*this, *m_ImageManager)); } diff --git a/src/vkcv/DescriptorSetLayoutManager.cpp b/src/vkcv/DescriptorSetLayoutManager.cpp index 6bbdb099ffbfe63bfaa6cead742d815202720b88..b0ed1064359e989236dfe4473be4e8b70c43adbb 100644 --- a/src/vkcv/DescriptorSetLayoutManager.cpp +++ b/src/vkcv/DescriptorSetLayoutManager.cpp @@ -34,8 +34,8 @@ namespace vkcv { DescriptorSetLayoutManager::~DescriptorSetLayoutManager() noexcept { for (uint64_t id = 0; id < getCount(); id++) { - // Resets the usage count to zero for destruction. - getById(id).layoutUsageCount = 0; + // Resets the usage count to one for destruction. + getById(id).layoutUsageCount = 1; } clear(); diff --git a/src/vkcv/DescriptorSetManager.cpp b/src/vkcv/DescriptorSetManager.cpp index 4a3d4f5bbc1a785d4977ede468172ef7c5a54af1..0c16267e82d3f5c39c7ca495a805295793d04c02 100644 --- a/src/vkcv/DescriptorSetManager.cpp +++ b/src/vkcv/DescriptorSetManager.cpp @@ -55,9 +55,10 @@ namespace vkcv { if (set.vulkanHandle) { getCore().getContext().getDevice().freeDescriptorSets(m_Pools [set.poolIndex], 1, &(set.vulkanHandle)); - set.setLayoutHandle = DescriptorSetLayoutHandle(); set.vulkanHandle = nullptr; } + + set.setLayoutHandle = DescriptorSetLayoutHandle(); } bool DescriptorSetManager::allocateDescriptorPool() { diff --git a/src/vkcv/Handles.cpp b/src/vkcv/Handles.cpp index 64ab3080f5e6a649fa4fb0d8f772872713cb0140..578e467623830b8a1e6a612533011a8aa9bfc977 100644 --- a/src/vkcv/Handles.cpp +++ b/src/vkcv/Handles.cpp @@ -5,12 +5,7 @@ namespace vkcv { - Handle::Handle() : m_id(std::numeric_limits<uint64_t>::max()), m_rc(nullptr), m_destroy(nullptr) {} - - Handle::Handle(uint64_t id, const HandleDestroyFunction &destroy) : - m_id(id), m_rc(new uint64_t(1)), m_destroy(destroy) {} - - Handle::~Handle() { + void Handle::destroy() { if ((m_rc) && (*m_rc > 0) && (--(*m_rc) == 0)) { if (m_destroy) { m_destroy(m_id); @@ -20,6 +15,15 @@ namespace vkcv { } } + Handle::Handle() : m_id(std::numeric_limits<uint64_t>::max()), m_rc(nullptr), m_destroy(nullptr) {} + + Handle::Handle(uint64_t id, const HandleDestroyFunction &destroy) : + m_id(id), m_rc(new uint64_t(1)), m_destroy(destroy) {} + + Handle::~Handle() { + destroy(); + } + Handle::Handle(const Handle &other) : m_id(other.m_id), m_rc(other.m_rc), m_destroy(other.m_destroy) { if (m_rc) { @@ -38,6 +42,8 @@ namespace vkcv { return *this; } + destroy(); + m_id = other.m_id; m_rc = other.m_rc; m_destroy = other.m_destroy; @@ -50,6 +56,8 @@ namespace vkcv { } Handle &Handle::operator=(Handle &&other) noexcept { + destroy(); + m_id = other.m_id; m_rc = other.m_rc; m_destroy = other.m_destroy; diff --git a/src/vkcv/SwapchainManager.cpp b/src/vkcv/SwapchainManager.cpp index c89845302c408faf05d38bc356f648ce822f2cd3..03dbdc0175b393565bc4235e99f5cb02dd176db5 100644 --- a/src/vkcv/SwapchainManager.cpp +++ b/src/vkcv/SwapchainManager.cpp @@ -207,7 +207,7 @@ namespace vkcv { vk::CompositeAlphaFlagBitsKHR::eOpaque, chosenPresentMode, true, entry.m_Swapchain); entry.m_Swapchain = device.createSwapchainKHR(swapchainCreateInfo); - return true; + return entry.m_Swapchain? true : false; } SwapchainHandle SwapchainManager::createSwapchain(Window &window) { diff --git a/src/vkcv/Window.cpp b/src/vkcv/Window.cpp index 78afe0f2175e6b3c7355e5f7863ae425069adacd..d710766014f21671a32b720421c734ddf12a317f 100644 --- a/src/vkcv/Window.cpp +++ b/src/vkcv/Window.cpp @@ -122,6 +122,9 @@ namespace vkcv { Window::e_char.unlock(); Window::e_gamepad.unlock(); Window::e_resize.remove(m_resizeHandle); + + m_swapchainHandle = SwapchainHandle(); + if (m_window) { s_Windows.erase(std::find(s_Windows.begin(), s_Windows.end(), m_window)); glfwDestroyWindow(m_window);