From 36299494ddf979792bf990730c209a77b638931e Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Mon, 2 Aug 2021 17:15:33 +0200 Subject: [PATCH] x11: Add COGL_HAS_TRACING checks around tracing code This code sneaked unconditionally, even though we can disable tracing code with -Dprofiler=false. Add some COGL_HAS_TRACING checks so that this code is also optionally built. Part-of: --- src/x11/window-x11.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/x11/window-x11.c b/src/x11/window-x11.c index 9152fde52..7f8e79aa5 100644 --- a/src/x11/window-x11.c +++ b/src/x11/window-x11.c @@ -4074,6 +4074,7 @@ meta_window_x11_update_sync_request_counter (MetaWindow *window, meta_compositor_queue_frame_drawn (window->display->compositor, window, no_delay_frame); +#ifdef COGL_HAS_TRACING if (G_UNLIKELY (cogl_is_tracing_enabled ())) { g_autofree char *description = NULL; @@ -4086,6 +4087,7 @@ meta_window_x11_update_sync_request_counter (MetaWindow *window, COGL_TRACE_DESCRIBE (MetaWindowSyncRequestCounter, description); COGL_TRACE_END (MetaWindowSyncRequestCounter); } +#endif } Window