Skip to content

Commit

Permalink
dump resources: remove calls to exit(1)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlunarg committed Oct 31, 2024
1 parent efc0a6c commit f92eaa5
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions framework/decode/vulkan_replay_dump_resources.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1879,7 +1879,6 @@ VkResult VulkanReplayDumpResourcesBase::QueueSubmit(const std::vector<VkSubmitIn
GFXRECON_LOG_ERROR("Dumping draw calls failed (%s). Terminating.",
util::ToString<VkResult>(res).c_str())
Release();
exit(1);
return res;
}

Expand All @@ -1896,7 +1895,6 @@ VkResult VulkanReplayDumpResourcesBase::QueueSubmit(const std::vector<VkSubmitIn
GFXRECON_LOG_ERROR("Dumping dispatch/ray tracing failed (%s). Terminating.",
util::ToString<VkResult>(res).c_str())
Release();
exit(1);
return res;
}

Expand Down

0 comments on commit f92eaa5

Please sign in to comment.