gtk: Remove gtk_snapshot_append()

It does not make sense to append an empty container node. Those should
only be push()'d.
This commit is contained in:
Benjamin Otte 2016-12-11 04:13:22 +01:00
parent f16d523cb2
commit 8830a1a1ad
3 changed files with 0 additions and 53 deletions

View File

@ -4461,7 +4461,6 @@ gtk_snapshot_set_transform
gtk_snapshot_transform
gtk_snapshot_translate_2d
gtk_snapshot_append_node
gtk_snapshot_append
gtk_snapshot_append_cairo_node
gtk_snapshot_clips_rect
gtk_snapshot_render_background

View File

@ -336,53 +336,6 @@ gtk_snapshot_append_node (GtkSnapshot *snapshot,
}
}
/**
* gtk_snapshot_append:
* @snapshot: a #GtkSnapshot
* @bounds: the bounds for the new node
* @name: (transfer none): a printf() style format string for the name for the new node
* @...: arguments to insert into the format string
*
* Creates a new render node and appends it to the current render
* node of @snapshot, without changing the current node.
*
* Since: 3.90
*
* Returns: (transfer full): the newly created #GskRenderNode
*/
GskRenderNode *
gtk_snapshot_append (GtkSnapshot *snapshot,
const graphene_rect_t *bounds,
const char *name,
...)
{
GskRenderNode *node;
g_return_val_if_fail (snapshot != NULL, NULL);
g_return_val_if_fail (bounds != NULL, NULL);
node = gsk_renderer_create_render_node (snapshot->renderer);
gsk_render_node_set_bounds (node, bounds);
if (name)
{
va_list args;
char *str;
va_start (args, name);
str = g_strdup_vprintf (name, args);
va_end (args);
gsk_render_node_set_name (node, str);
g_free (str);
}
gtk_snapshot_append_node (snapshot, node);
return node;
}
/**
* gtk_snapshot_append_cairo_node:
* @snapshot: a #GtkSnapshot

View File

@ -65,11 +65,6 @@ GDK_AVAILABLE_IN_3_90
void gtk_snapshot_append_node (GtkSnapshot *snapshot,
GskRenderNode *node);
GDK_AVAILABLE_IN_3_90
GskRenderNode * gtk_snapshot_append (GtkSnapshot *snapshot,
const graphene_rect_t *bounds,
const char *name,
...) G_GNUC_PRINTF(3, 4);
GDK_AVAILABLE_IN_3_90
cairo_t * gtk_snapshot_append_cairo_node (GtkSnapshot *snapshot,
const graphene_rect_t *bounds,
const char *name,