Update Vulkan headers. Hack around another validation check (which I beleive to be bugged).

This commit is contained in:
Henrik Rydgard 2016-12-15 18:11:26 +01:00
parent aa964ea2e5
commit a2b49fd0e0
16 changed files with 1642 additions and 1042 deletions

View file

@ -131,8 +131,9 @@ static VkBool32 VKAPI_CALL Vulkan_Dbg(VkDebugReportFlagsEXT msgFlags, VkDebugRep
return false;
if (msgCode == 7 && startsWith(pMsg, "You cannot transition the layout"))
return false;
//if (msgCode == 43 && startsWith(pMsg, "At Draw time the active render"))
// return false;
// This seems like a bogus result when submitting two command buffers in one go, one creating the image, the other one using it.
if (msgCode == 6 && startsWith(pMsg, "Cannot submit cmd buffer using image"))
return false;
if (msgCode == 44 && startsWith(pMsg, "At Draw time the active render"))
return false;