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.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.c')
-rw-r--r-- | gdk-pixbuf/gdk-pixbuf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdk-pixbuf/gdk-pixbuf.c b/gdk-pixbuf/gdk-pixbuf.c index 2ae4bc6450..1a64de72da 100644 --- a/gdk-pixbuf/gdk-pixbuf.c +++ b/gdk-pixbuf/gdk-pixbuf.c @@ -395,9 +395,10 @@ gdk_pixbuf_get_height (const GdkPixbuf *pixbuf) * gdk_pixbuf_get_rowstride: * @pixbuf: A pixbuf. * - * Queries the rowstride of a pixbuf, which is the number of bytes between rows. + * Queries the rowstride of a pixbuf, which is the number of bytes between the start of a row + * and the start of the next row. * - * Return value: Number of bytes between rows. + * Return value: Distance between row starts. **/ int gdk_pixbuf_get_rowstride (const GdkPixbuf *pixbuf) |