Disable validation by default

This commit is contained in:
saschawillems 2017-12-26 10:38:09 +01:00
parent cf77c8003c
commit 603fdb8a16

View file

@ -28,7 +28,7 @@
#include "vulkanexamplebase.h" #include "vulkanexamplebase.h"
// Set to "true" to enable Vulkan's validation layers (see vulkandebug.cpp for details) // 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 // 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 // See "prepareVertices" for details on what's staging and on why to use it
#define USE_STAGING true #define USE_STAGING true