From efaeac9e847a8234b1ea1cf32304c91f92b840a3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Thu, 5 Mar 2020 15:59:49 -0500 Subject: [PATCH] glthread: clean up debug_print_sync code Reviewed-by: Timothy Arceri Part-of: --- src/mesa/main/glthread.c | 4 +++- src/mesa/main/marshal.h | 23 ----------------------- 2 files changed, 3 insertions(+), 24 deletions(-) diff --git a/src/mesa/main/glthread.c b/src/mesa/main/glthread.c index 4288c9aedbb..c7466025086 100644 --- a/src/mesa/main/glthread.c +++ b/src/mesa/main/glthread.c @@ -258,5 +258,7 @@ void _mesa_glthread_finish_before(struct gl_context *ctx, const char *func) { _mesa_glthread_finish(ctx); - debug_print_sync_fallback(func); + + /* Uncomment this if you want to know where glthread syncs. */ + /*printf("fallback to sync: %s\n", func);*/ } diff --git a/src/mesa/main/marshal.h b/src/mesa/main/marshal.h index c28d7f37637..9688012bb3b 100644 --- a/src/mesa/main/marshal.h +++ b/src/mesa/main/marshal.h @@ -116,29 +116,6 @@ _mesa_glthread_is_non_vbo_draw_elements_indirect(const struct gl_context *ctx) glthread->CurrentVAO->HasUserPointer); } -#define DEBUG_MARSHAL_PRINT_CALLS 0 - -/** - * This is printed when we have fallen back to a sync. This can happen when - * MARSHAL_MAX_CMD_SIZE is exceeded. - */ -static inline void -debug_print_sync_fallback(const char *func) -{ -#if DEBUG_MARSHAL_PRINT_CALLS - printf("fallback to sync: %s\n", func); -#endif -} - - -static inline void -debug_print_sync(const char *func) -{ -#if DEBUG_MARSHAL_PRINT_CALLS - printf("sync: %s\n", func); -#endif -} - struct _glapi_table * _mesa_create_marshal_table(const struct gl_context *ctx); -- 2.30.2