File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1353,7 +1353,7 @@ lvk::VulkanImmediateCommands::~VulkanImmediateCommands() {
13531353
13541354 waitAll ();
13551355
1356- for (auto & buf : buffers_) {
1356+ for (CommandBufferWrapper & buf : buffers_) {
13571357 // lifetimes of all VkFence objects are managed explicitly we do not use deferredTask() for them
13581358 vkDestroyFence (device_, buf.fence_ , nullptr );
13591359 vkDestroySemaphore (device_, buf.semaphore_ , nullptr );
@@ -1407,7 +1407,7 @@ const lvk::VulkanImmediateCommands::CommandBufferWrapper& lvk::VulkanImmediateCo
14071407 VulkanImmediateCommands::CommandBufferWrapper* current = nullptr ;
14081408
14091409 // we are ok with any available buffer
1410- for (auto & buf : buffers_) {
1410+ for (CommandBufferWrapper & buf : buffers_) {
14111411 if (buf.cmdBuf_ == VK_NULL_HANDLE) {
14121412 current = &buf;
14131413 break ;
You can’t perform that action at this time.
0 commit comments