diff options
author | Benjamin Otte <otte@redhat.com> | 2016-12-21 20:28:21 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2016-12-23 08:11:01 +0100 |
commit | 2d2209859e0759dfe9ca0fbf284cf2e99381bb97 (patch) | |
tree | 77139dbba8836de62fbc20f5ecedb2a909d09ff3 /gsk/gsktextureprivate.h | |
parent | 373e08d6d4ea35dbc937a012ef864fd36bb6e42d (diff) | |
download | gtk+-2d2209859e0759dfe9ca0fbf284cf2e99381bb97.tar.gz |
gsk: Rename to gsk_texture_download_surface()
I want to reuse the name gsk_texture_download() for downloading the
actual bytes.
Diffstat (limited to 'gsk/gsktextureprivate.h')
-rw-r--r-- | gsk/gsktextureprivate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gsk/gsktextureprivate.h b/gsk/gsktextureprivate.h index c8d94b6789..13eba48eae 100644 --- a/gsk/gsktextureprivate.h +++ b/gsk/gsktextureprivate.h @@ -30,14 +30,14 @@ struct _GskTextureClass { gsize size; void (* finalize) (GskTexture *texture); - cairo_surface_t * (* download) (GskTexture *texture); + cairo_surface_t * (* download_surface) (GskTexture *texture); }; gpointer gsk_texture_new (const GskTextureClass *klass, int width, int height); GskTexture * gsk_texture_new_for_surface (cairo_surface_t *surface); -cairo_surface_t * gsk_texture_download (GskTexture *texture); +cairo_surface_t * gsk_texture_download_surface (GskTexture *texture); gboolean gsk_texture_set_render_data (GskTexture *self, gpointer key, |