summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Garnacho <carlosg@gnome.org>2021-08-02 17:15:33 +0200
committerCarlos Garnacho <carlosg@gnome.org>2021-08-02 17:15:33 +0200
commit36299494ddf979792bf990730c209a77b638931e (patch)
treec5565734e5a92494b76be6f8e8819a449ad366bd
parenta42c470efd433cc2b8614cbb292f7fd7d20e343a (diff)
downloadmutter-36299494ddf979792bf990730c209a77b638931e.tar.gz
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: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1951>
-rw-r--r--src/x11/window-x11.c2
1 files changed, 2 insertions, 0 deletions
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