[mutter] cogl/trace: Add getter for trace enabled state
- From: Marge Bot <marge-bot src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [mutter] cogl/trace: Add getter for trace enabled state
- Date: Thu, 29 Jul 2021 14:22:05 +0000 (UTC)
commit 6d64a43b1f60e38bde8dccad2fda9ea12963dda4
Author: Jonas Ã…dahl <jadahl gmail com>
Date: Tue Feb 2 23:56:57 2021 +0100
cogl/trace: Add getter for trace enabled state
Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1700>
cogl/cogl/cogl-trace.h | 16 +++++++++++-----
1 file changed, 11 insertions(+), 5 deletions(-)
---
diff --git a/cogl/cogl/cogl-trace.h b/cogl/cogl/cogl-trace.h
index 224655594f..2008b97a51 100644
--- a/cogl/cogl/cogl-trace.h
+++ b/cogl/cogl/cogl-trace.h
@@ -88,27 +88,33 @@ cogl_auto_trace_end_helper (CoglTraceHead **head)
cogl_trace_end (*head);
}
+static inline gboolean
+cogl_is_tracing_enabled (void)
+{
+ return !!g_private_get (&cogl_trace_thread_data);
+}
+
#define COGL_TRACE_BEGIN(Name, name) \
CoglTraceHead CoglTrace##Name = { 0 }; \
- if (g_private_get (&cogl_trace_thread_data)) \
+ if (cogl_is_tracing_enabled ()) \
cogl_trace_begin (&CoglTrace##Name, name); \
#define COGL_TRACE_END(Name)\
- if (g_private_get (&cogl_trace_thread_data)) \
+ if (cogl_is_tracing_enabled ()) \
cogl_trace_end (&CoglTrace##Name);
#define COGL_TRACE_BEGIN_SCOPED(Name, name) \
CoglTraceHead CoglTrace##Name = { 0 }; \
__attribute__((cleanup (cogl_auto_trace_end_helper))) \
CoglTraceHead *ScopedCoglTrace##Name = NULL; \
- if (g_private_get (&cogl_trace_thread_data)) \
+ if (cogl_is_tracing_enabled ()) \
{ \
cogl_trace_begin (&CoglTrace##Name, name); \
ScopedCoglTrace##Name = &CoglTrace##Name; \
}
#define COGL_TRACE_DESCRIBE(Name, description)\
- if (g_private_get (&cogl_trace_thread_data)) \
+ if (cogl_is_tracing_enabled ()) \
cogl_trace_describe (&CoglTrace##Name, description);
#define COGL_TRACE_SCOPED_ANCHOR(Name) \
@@ -117,7 +123,7 @@ cogl_auto_trace_end_helper (CoglTraceHead **head)
CoglTraceHead *ScopedCoglTrace##Name = NULL; \
#define COGL_TRACE_BEGIN_ANCHORED(Name, name) \
- if (g_private_get (&cogl_trace_thread_data)) \
+ if (cogl_is_tracing_enabled ()) \
{ \
cogl_trace_begin (&CoglTrace##Name, name); \
ScopedCoglTrace##Name = &CoglTrace##Name; \
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]