diff --git a/docs/reference/gdk-pixbuf/tmpl/gdk-pixbuf.sgml b/docs/reference/gdk-pixbuf/tmpl/gdk-pixbuf.sgml index 7cbef5a28d..639003bdff 100644 --- a/docs/reference/gdk-pixbuf/tmpl/gdk-pixbuf.sgml +++ b/docs/reference/gdk-pixbuf/tmpl/gdk-pixbuf.sgml @@ -24,14 +24,14 @@ Information that describes an image. - put_pixel() example + put_pixel(<!-- -->) example - The following code illustrates a simple put_pixel() function - for RGB pixbufs with 8 bits per channel with an alpha channel. - It is not included in the gdk-pixbuf library for performance - reasons; rather than making several function calls for each - pixel, your own code can take shortcuts. + The following code illustrates a simple put_pixel() + function for RGB pixbufs with 8 bits per channel with an alpha + channel. It is not included in the gdk-pixbuf library for + performance reasons; rather than making several function calls + for each pixel, your own code can take shortcuts. @@ -51,8 +51,8 @@ put_pixel (GdkPixbuf *pixbuf, int x, int y, guchar red, guchar green, guchar blu width = gdk_pixbuf_get_width (pixbuf); height = gdk_pixbuf_get_height (pixbuf); - g_assert (x >= 0 && x < width); - g_assert (y >= 0 && y < height); + g_assert (x >= 0 && x < width); + g_assert (y >= 0 && y < height); rowstride = gdk_pixbuf_get_rowstride (pixbuf); pixels = gdk_pixbuf_get_pixels (pixbuf); @@ -284,3 +284,5 @@ mode: sgml sgml-parent-document: ("../gdk-pixbuf.sgml" "book" "refsect2") End: --> + +