diff --git a/base/vulkanexamplebase.cpp b/base/vulkanexamplebase.cpp index b5706ed8..89db8280 100644 --- a/base/vulkanexamplebase.cpp +++ b/base/vulkanexamplebase.cpp @@ -790,7 +790,7 @@ void VulkanExampleBase::initVulkan(bool enableValidation) { // The report flags determine what type of messages for the layers will be displayed // For validating (debugging) an appplication the error and warning bits should suffice - VkDebugReportFlagsEXT debugReportFlags = VK_DEBUG_REPORT_ERROR_BIT_EXT | VK_DEBUG_REPORT_WARNING_BIT_EXT | VK_DEBUG_REPORT_PERFORMANCE_WARNING_BIT_EXT; + VkDebugReportFlagsEXT debugReportFlags = VK_DEBUG_REPORT_ERROR_BIT_EXT; // | VK_DEBUG_REPORT_WARNING_BIT_EXT | VK_DEBUG_REPORT_PERFORMANCE_WARNING_BIT_EXT; // Additional flags include performance info, loader and layer debug messages, etc. vkDebug::setupDebugging(instance, debugReportFlags, VK_NULL_HANDLE); }