From 603fdb8a161d0b94cffc5e3e59a1c6301d2c1ebb Mon Sep 17 00:00:00 2001 From: saschawillems Date: Tue, 26 Dec 2017 10:38:09 +0100 Subject: [PATCH] Disable validation by default --- examples/triangle/triangle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/triangle/triangle.cpp b/examples/triangle/triangle.cpp index 055e3c3c..095a472d 100644 --- a/examples/triangle/triangle.cpp +++ b/examples/triangle/triangle.cpp @@ -28,7 +28,7 @@ #include "vulkanexamplebase.h" // Set to "true" to enable Vulkan's validation layers (see vulkandebug.cpp for details) -#define ENABLE_VALIDATION true +#define ENABLE_VALIDATION false // Set to "true" to use staging buffers for uploading vertex and index data to device local memory // See "prepareVertices" for details on what's staging and on why to use it #define USE_STAGING true