Fix a few compiler warnings and startup/validation issues at runtime (#1193)

* Add error recovery to trianglevulkan13 and fix missing "override" compiler warnings

* Look for vkGetPhysicalDeviceFormatProperties2KHR in hostimagecopy example

* Enable fragmentStoresAndAtomics feature to avoid VVL warning in subpasses example
This commit is contained in:
SRSaunders 2025-03-09 07:48:00 -04:00 committed by GitHub
parent 02ed0eebb3
commit d14be3b787
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 11 additions and 1 deletions

View file

@ -99,6 +99,8 @@ public:
camera.setRotation(glm::vec3(0.5f, 210.05f, 0.0f));
camera.setPerspective(60.0f, (float)width / (float)height, 0.1f, 256.0f);
ui.subpass = 2;
enabledFeatures.fragmentStoresAndAtomics = VK_TRUE;
}
~VulkanExample()