Skip to content

Commit

Permalink
Fix clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
panos-lunarg committed Nov 15, 2024
1 parent de69401 commit 4aaa6ff
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion framework/decode/file_processor.h
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,6 @@ class FileProcessor

return file_stack_.back();
}

};

GFXRECON_END_NAMESPACE(decode)
Expand Down
5 changes: 1 addition & 4 deletions framework/decode/vulkan_virtual_swapchain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -636,12 +636,10 @@ VkResult VulkanVirtualSwapchain::GetSwapchainImagesKHR(VkResult
// Notify any layers by calling the provided pointer to their ReportReplayGeneratedVulkanCommands
decode::BeginInjectedCommands();

VkResult res = CreateSwapchainResourceData(
result = CreateSwapchainResourceData(
device_info, swapchain_info, capture_image_count, replay_image_count, images, false);

decode::EndInjectedCommands();

return res;
}

return result;
Expand Down Expand Up @@ -983,7 +981,6 @@ VkResult VulkanVirtualSwapchain::QueuePresentKHR(VkResult
VkPresentInfoKHR modified_present_info = *present_info;
modified_present_info.waitSemaphoreCount = static_cast<uint32_t>(present_wait_semaphores.size());
modified_present_info.pWaitSemaphores = present_wait_semaphores.data();

return func(queue, &modified_present_info);
}

Expand Down

0 comments on commit 4aaa6ff

Please sign in to comment.