summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/debug.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2015-03-04 19:17:57 -0700
committerBrian Paul <brianp@vmware.com>2015-03-05 06:59:43 -0700
commitfac77912b5faa2394e0c0a88f3862eae9d87967a (patch)
tree20f3acaa69fc97dbe7312e33cbc8663da61de091 /src/mesa/main/debug.c
parent458c7490c29ef2960a33a089f65490e044da5d27 (diff)
downloadexternal_mesa3d-fac77912b5faa2394e0c0a88f3862eae9d87967a.zip
external_mesa3d-fac77912b5faa2394e0c0a88f3862eae9d87967a.tar.gz
external_mesa3d-fac77912b5faa2394e0c0a88f3862eae9d87967a.tar.bz2
mesa: remove THREADS check, printf calls in debug.c
THREADS is going away in the next commit. Reviewed-by: Matt Turner <mattst88@gmail.com> Reviewed-by: José Fonseca <jfonseca@vmware.com>
Diffstat (limited to 'src/mesa/main/debug.c')
-rw-r--r--src/mesa/main/debug.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mesa/main/debug.c b/src/mesa/main/debug.c
index eda4937..b50d79e 100644
--- a/src/mesa/main/debug.c
+++ b/src/mesa/main/debug.c
@@ -118,11 +118,6 @@ void _mesa_print_info( struct gl_context *ctx )
*/
_mesa_debug(NULL, "Mesa GL_EXTENSIONS = %s\n", ctx->Extensions.String);
-#if defined(THREADS)
- _mesa_debug(NULL, "Mesa thread-safe: YES\n");
-#else
- _mesa_debug(NULL, "Mesa thread-safe: NO\n");
-#endif
#if defined(USE_X86_ASM)
_mesa_debug(NULL, "Mesa x86-optimized: YES\n");
#else