From: José Fonseca Date: Thu, 7 Aug 2008 08:15:32 +0000 (+0100) Subject: gallium: Disable debug break by default on windows. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0f5a2ebec4c16e71bde7132edb8c2209b4000c61;p=mesa.git gallium: Disable debug break by default on windows. --- diff --git a/src/gallium/auxiliary/util/p_debug.c b/src/gallium/auxiliary/util/p_debug.c index 082b0e9fb56..2c2f2f8931f 100644 --- a/src/gallium/auxiliary/util/p_debug.c +++ b/src/gallium/auxiliary/util/p_debug.c @@ -324,7 +324,11 @@ void _debug_assert_fail(const char *expr, const char *function) { _debug_printf("%s:%u:%s: Assertion `%s' failed.\n", file, line, function, expr); +#if defined(PIPE_OS_WINDOWS) + if (debug_get_bool_option("GALLIUM_ABORT_ON_ASSERT", FALSE)) +#else if (debug_get_bool_option("GALLIUM_ABORT_ON_ASSERT", TRUE)) +#endif debug_break(); else _debug_printf("continuing...\n");