From 898eb1919ba9e9130ede318bf461cf9a71ef91e1 Mon Sep 17 00:00:00 2001 From: Tobias Frisch <tfrisch@uni-koblenz.de> Date: Mon, 3 May 2021 14:13:56 +0200 Subject: [PATCH] [#7] fixed cross-compatible debug-flags Signed-off-by: Tobias Frisch <tfrisch@uni-koblenz.de> --- src/vkcv/Context.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/vkcv/Context.cpp b/src/vkcv/Context.cpp index 9682ca18..ddb7d762 100644 --- a/src/vkcv/Context.cpp +++ b/src/vkcv/Context.cpp @@ -28,7 +28,7 @@ namespace vkcv { } // if in debug mode, check if validation layers are supported. Enable them if supported -#if _DEBUG +#ifndef NDEBUG std::vector<const char*> validationLayers = { "VK_LAYER_KHRONOS_validation" }; @@ -73,7 +73,7 @@ namespace vkcv { instanceExtensions.data() ); -#if _DEBUG +#ifndef NDEBUG instanceCreateInfo.enabledLayerCount = static_cast<uint32_t>(validationLayers.size()); instanceCreateInfo.ppEnabledLayerNames = validationLayers.data(); #endif @@ -111,7 +111,7 @@ namespace vkcv { nullptr // Should our device use some features??? If yes: TODO ); -#if _DEBUG +#ifndef NDEBUG deviceCreateInfo.enabledLayerCount = static_cast<uint32_t>(validationLayers.size()); deviceCreateInfo.ppEnabledLayerNames = validationLayers.data(); #endif @@ -273,7 +273,7 @@ namespace vkcv { const char** glfwExtensions = glfwGetRequiredInstanceExtensions(&glfwExtensionCount); std::vector<const char*> extensions(glfwExtensions, glfwExtensions + glfwExtensionCount); -#if _DEBUG +#ifndef NDEBUG extensions.push_back(VK_EXT_DEBUG_UTILS_EXTENSION_NAME); #endif -- GitLab