Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Erwin <significant.bit@gmail.com>2016-11-12 08:53:58 +0300
committerMike Erwin <significant.bit@gmail.com>2016-11-12 08:53:58 +0300
commiteb880f280db93524e9f77d3a303daca9cf525217 (patch)
treef0557f1a17b30b452fdecba38a1e791e2132108d
parent8fd510f4b84a1cdcdd484948afc2087cf28cb1c5 (diff)
Gawain: strict error checking in debug builds
Not release builds. Fix 66d7f01eccdd9f82a4929f2873639e4012362090 to match what I meant to do.
-rw-r--r--source/blender/gpu/gawain/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/gawain/common.h b/source/blender/gpu/gawain/common.h
index 41ce8c22936..ecfda7134ab 100644
--- a/source/blender/gpu/gawain/common.h
+++ b/source/blender/gpu/gawain/common.h
@@ -11,7 +11,7 @@
#pragma once
-#define TRUST_NO_ONE defined(NDEBUG)
+#define TRUST_NO_ONE !defined(NDEBUG)
#include <GL/glew.h>
#include <stdbool.h>