diff options
author | Benjamin Otte <otte@redhat.com> | 2018-04-24 03:17:23 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2018-04-24 04:06:58 +0200 |
commit | 73b4a62f5101473cf585f844579922a0e03c376a (patch) | |
tree | e728288a7072b8170e48b126e418353c193389c2 /gtk/gtksnapshotprivate.h | |
parent | 49f9d2108dbde96d2d5555f737db0183e4002a8a (diff) | |
download | gtk+-73b4a62f5101473cf585f844579922a0e03c376a.tar.gz |
snapshot: Redo debug messages
Instead of every snapshot function having debug messages, have an
explicit gtk_snapshot_push_debug() function that appends a debug node.
Diffstat (limited to 'gtk/gtksnapshotprivate.h')
-rw-r--r-- | gtk/gtksnapshotprivate.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gtk/gtksnapshotprivate.h b/gtk/gtksnapshotprivate.h index ba134b779e..d560bbbbc0 100644 --- a/gtk/gtksnapshotprivate.h +++ b/gtk/gtksnapshotprivate.h @@ -27,11 +27,9 @@ typedef struct _GtkSnapshotState GtkSnapshotState; typedef GskRenderNode * (* GtkSnapshotCollectFunc) (GtkSnapshot *snapshot, GtkSnapshotState *state, GskRenderNode **nodes, - guint n_nodes, - const char *name); + guint n_nodes); struct _GtkSnapshotState { - char *name; guint start_node_index; guint n_nodes; @@ -76,6 +74,9 @@ struct _GtkSnapshotState { double progress; GskRenderNode *start_node; } cross_fade; + struct { + char *message; + } debug; } data; }; @@ -96,9 +97,6 @@ struct _GtkSnapshotClass { GObjectClass parent_class; /* it's really GdkSnapshotClass, but don't tell anyone! */ }; -GtkSnapshot * gtk_snapshot_new_child (GtkSnapshot *parent, - const char *name, - ...) G_GNUC_PRINTF (2, 3); void gtk_snapshot_append_node_internal (GtkSnapshot *snapshot, GskRenderNode *node); |