From 5d64f944f52eca4b60d1405e2ed8a53197e62e65 Mon Sep 17 00:00:00 2001 From: Richard Geldreich Date: Thu, 17 Jul 2025 12:18:18 -0400 Subject: [PATCH] Fixing BASISU_OPENCL_ASSERT_ON_ANY_ERRORS so it's 0 by default --- encoder/basisu_opencl.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/encoder/basisu_opencl.cpp b/encoder/basisu_opencl.cpp index 200cff5..312e46b 100644 --- a/encoder/basisu_opencl.cpp +++ b/encoder/basisu_opencl.cpp @@ -31,7 +31,9 @@ #include #endif -#define BASISU_OPENCL_ASSERT_ON_ANY_ERRORS (1) +#ifndef BASISU_OPENCL_ASSERT_ON_ANY_ERRORS + #define BASISU_OPENCL_ASSERT_ON_ANY_ERRORS (0) +#endif namespace basisu {