diff options
author | Owen Taylor <otaylor@redhat.com> | 2002-08-11 02:20:16 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2002-08-11 02:20:16 +0000 |
commit | 12b90e7cfe73f6b607fde77498037906ac2f1116 (patch) | |
tree | dbbe57b27e1ec300d6241693c9604e48a5950e53 /gdk | |
parent | 77eee887f3d1044a2e52ec7fd347842122d4719e (diff) | |
download | gtk+-12b90e7cfe73f6b607fde77498037906ac2f1116.tar.gz |
Mention in the docs that @pixmap_return and @mask_return can be %NULL.
Sat Aug 10 22:18:05 2002 Owen Taylor <otaylor@redhat.com>
* gdk/gdkpixbuf-render.c
(gdk_pixbuf_render_pixmap_and_mask[_for_colormap]): Mention
in the docs that @pixmap_return and @mask_return can
be %NULL.
Diffstat (limited to 'gdk')
-rw-r--r-- | gdk/gdkpixbuf-render.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/gdk/gdkpixbuf-render.c b/gdk/gdkpixbuf-render.c index 98d0b62e9c..99156f7ea9 100644 --- a/gdk/gdkpixbuf-render.c +++ b/gdk/gdkpixbuf-render.c @@ -244,8 +244,10 @@ gdk_pixbuf_render_to_drawable_alpha (GdkPixbuf *pixbuf, /** * gdk_pixbuf_render_pixmap_and_mask: * @pixbuf: A pixbuf. - * @pixmap_return: Return value for the created pixmap. - * @mask_return: Return value for the created mask. + * @pixmap_return: Location to store a pointer to the created pixmap, + * or %NULL if the pixmap is not needed. + * @mask_return: Location to store a pointer to the created mask, + * or %NULL if the mask is not needed. * @alpha_threshold: Threshold value for opacity values. * * Creates a pixmap and a mask bitmap which are returned in the @pixmap_return @@ -279,8 +281,10 @@ gdk_pixbuf_render_pixmap_and_mask (GdkPixbuf *pixbuf, * gdk_pixbuf_render_pixmap_and_mask_for_colormap: * @pixbuf: A pixbuf. * @colormap: A #GdkColormap - * @pixmap_return: Return value for the created pixmap. - * @mask_return: Return value for the created mask. + * @pixmap_return: Location to store a pointer to the created pixmap, + * or %NULL if the pixmap is not needed. + * @mask_return: Location to store a pointer to the created mask, + * or %NULL if the mask is not needed. * @alpha_threshold: Threshold value for opacity values. * * Creates a pixmap and a mask bitmap which are returned in the @pixmap_return |