diff options
author | Matthias Clasen <maclas@gmx.de> | 2003-08-03 21:51:24 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2003-08-03 21:51:24 +0000 |
commit | e5d0f500c63607da05b84f0a0374e887ff418027 (patch) | |
tree | 62855f2e61f3804ac7568493efb9e96f91fdc9e5 /gdk-pixbuf/gdk-pixbuf-data.c | |
parent | ee18c33dc99495f4489096d9c04968641cabb567 (diff) | |
download | gtk+-e5d0f500c63607da05b84f0a0374e887ff418027.tar.gz |
Clarify misleading explanation of rowstride. (#119000)
2003-08-03 Matthias Clasen <maclas@gmx.de>
* gdk-pixbuf.c (gdk_pixbuf_get_rowstride):
* gdk-pixbuf-data.c (gdk_pixbuf_new_from_data): Clarify misleading explanation of
rowstride. (#119000)
Diffstat (limited to 'gdk-pixbuf/gdk-pixbuf-data.c')
-rw-r--r-- | gdk-pixbuf/gdk-pixbuf-data.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gdk-pixbuf/gdk-pixbuf-data.c b/gdk-pixbuf/gdk-pixbuf-data.c index 5156c4ee86..0686bdefc7 100644 --- a/gdk-pixbuf/gdk-pixbuf-data.c +++ b/gdk-pixbuf/gdk-pixbuf-data.c @@ -36,7 +36,7 @@ * @bits_per_sample: Number of bits per sample. * @width: Width of the image in pixels. * @height: Height of the image in pixels. - * @rowstride: Distance in bytes between rows. + * @rowstride: Distance in bytes between row starts. * @destroy_fn: Function used to free the data when the pixbuf's reference count * drops to zero, or %NULL if the data should not be freed. * @destroy_fn_data: Closure data to pass to the destroy notification function. @@ -44,8 +44,7 @@ * Creates a new #GdkPixbuf out of in-memory image data. Currently only RGB * images with 8 bits per sample are supported. * - * Return value: A newly-created #GdkPixbuf structure with a reference count of - * 1. + * Return value: A newly-created #GdkPixbuf structure with a reference count of 1. **/ GdkPixbuf * gdk_pixbuf_new_from_data (const guchar *data, GdkColorspace colorspace, gboolean has_alpha, |