Examples: Vulkan: Disable IMGUI_VULKAN_DEBUG_REPORT by default. Update .bat files for newer VulkanSDK.

This commit is contained in:
omar
2017-05-01 16:46:57 +02:00
parent 56dff3a080
commit 89d03d5cca
3 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@
#define IMGUI_MAX_POSSIBLE_BACK_BUFFERS 16
#define IMGUI_UNLIMITED_FRAME_RATE
#define IMGUI_VULKAN_DEBUG_REPORT
//#define IMGUI_VULKAN_DEBUG_REPORT
static VkAllocationCallbacks* g_Allocator = NULL;
static VkInstance g_Instance = VK_NULL_HANDLE;
@ -233,7 +233,7 @@ static void setup_vulkan(GLFWwindow* window)
extensions[ extensions_count ] = "VK_EXT_debug_report";
create_info.enabledExtensionCount = extensions_count+1;
create_info.ppEnabledExtensionNames = extensions;
#elif
#else
create_info.enabledExtensionCount = extensions_count;
create_info.ppEnabledExtensionNames = glfw_extensions;
#endif // IMGUI_VULKAN_DEBUG_REPORT