Remove disabling of validation warning. It works.

This commit is contained in:
Henrik Rydgård 2017-10-31 12:57:27 +01:00
parent ed2731d197
commit bbfc32f131

View File

@ -129,10 +129,6 @@ static VkBool32 VKAPI_CALL Vulkan_Dbg(VkDebugReportFlagsEXT msgFlags, VkDebugRep
if (msgCode == 64) // Another useless perf warning that will be seen less and less as we optimize - vkCmdClearAttachments() issued on command buffer object 0x00000195296C6D40 prior to any Draw Cmds. It is recommended you use RenderPass LOAD_OP_CLEAR on Attachments prior to any Draw.
return false;
// TEMPORARy
if (msgCode == 6)
return false;
#ifdef _WIN32
std::string msg = message.str();
OutputDebugStringA(msg.c_str());