Merge pull request #11656 from liamwhite/recreate-surface-automatically

vk_present_manager: recreate surface on any surface loss
This commit is contained in:
liamwhite
2023-10-07 12:49:54 -04:00
committed by GitHub
6 changed files with 33 additions and 49 deletions

View File

@ -117,6 +117,9 @@ public:
virtual ~Exception() = default;
const char* what() const noexcept override;
VkResult GetResult() const noexcept {
return result;
}
private:
VkResult result;