diff options
| author | Tony Barbour <tony@LunarG.com> | 2017-01-06 15:56:39 -0700 |
|---|---|---|
| committer | Tony Barbour <tony@LunarG.com> | 2017-01-13 11:51:41 -0700 |
| commit | cb0a81c3fe487b8b2966b85e40bcfba683c3eb96 (patch) | |
| tree | 53824dd481b5cadce2296b0a3341b774baf1c5d8 | |
| parent | 84376fe08235bfbe394e9b3521bab1217436120d (diff) | |
| download | usermoji-cb0a81c3fe487b8b2966b85e40bcfba683c3eb96.tar.xz | |
demos: Cube quit ignoring NULL fence errors
Change-Id: I2cc5c49b53a19716096ac912120286f03f7d6f91
| -rw-r--r-- | demos/cube.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/demos/cube.c b/demos/cube.c index 48f8aa44..360b3c67 100644 --- a/demos/cube.c +++ b/demos/cube.c @@ -434,10 +434,6 @@ dbgFunc(VkFlags msgFlags, VkDebugReportObjectTypeEXT objType, assert(message); - // We know we're submitting queues without fences, ignore this - if (strstr(pMsg, "vkQueueSubmit parameter, VkFence fence, is null pointer")) - return false; - if (msgFlags & VK_DEBUG_REPORT_INFORMATION_BIT_EXT) { sprintf(message, "INFORMATION: [%s] Code %d : %s", pLayerPrefix, msgCode, pMsg); validation_error = 1; |
