summaryrefslogtreecommitdiff
path: root/gdk-pixbuf/gdk-pixdata.h
Commit message (Collapse)AuthorAgeFilesLines
* docs: Generate the GdkPixdata API referenceEmmanuele Bassi2021-03-211-19/+8
| | | | Different introspection file, different API reference.
* Add version macro headerChun-wei Fan2016-06-071-5/+5
| | | | | | | | | | | | | Add a version macro header that would reveal the availability of the various APIs, which is used to indicate what stable release series an API is available, and what release series is an API deprecated. This is also used to export the symbols using compiler directives, which would eliminate the need to maintain .symbols files. Annotate the symbols in the pubic headers accordingly, and update the doc sections file so that the macros are included in the documentation. https://bugzilla.gnome.org/show_bug.cgi?id=767164
* lib: Deprecate GdkPixdataBastien Nocera2014-10-211-0/+8
| | | | | | | | GdkPixdata has a number of problems, including: - it doesn't use the original files, losing metadata - its RLE compression is ineffecient, even more so for lossy formats - the way it's implemented doesn't support data > 64 kB on Windows (See https://bugzilla.gnome.org/show_bug.cgi?id=603706)
* Updated FSF's addressDaniel Mustieles2014-01-311-3/+1
|
* Various annotation fixesMatthias Clasen2011-12-161-1/+1
| | | | Reported by Evan Nemerson in bug 659888.
* Fix misleading documentation of rowstride. (#113924, Noah Levitt)Matthias Clasen2003-05-311-4/+4
| | | | | | | 2003-06-01 Matthias Clasen <maclas@gmx.de> * gdk-pixdata.h (struct _GdkPixdata): Fix misleading documentation of rowstride. (#113924, Noah Levitt)
* Include glib-object.h, Add G_BEGIN_DECLS/END_DECLS toOwen Taylor2002-01-091-7/+2
| | | | | | | | | | Wed Jan 9 11:29:44 2002 Owen Taylor <otaylor@redhat.com> * Makefile.am (s-enum-types-h): Include glib-object.h, Add G_BEGIN_DECLS/END_DECLS to gdk-pixbuf-enum-types.h. (#68325, Mikael Hermansson) * *.h: G_BEGIN_DECLS cleanups.
* Fix trailing "," in enumeration.Owen Taylor2001-12-231-1/+1
| | | | | | Sat Dec 22 15:31:20 2001 Owen Taylor <otaylor@redhat.com> * gdk-pixdata.h: Fix trailing "," in enumeration.
* Documentation. Spelling fixes.Matthias Clasen2001-10-161-1/+76
| | | | | * gdk-pixdata.c, gdk-pixdata.h: Documentation. * gdk-pixbuf-csource.1: Spelling fixes.
* use gdk_pixbuf_new_from_stream(). fixed up item factory so inlined pixbufsTim Janik2001-06-261-0/+100
Tue Jun 26 10:04:30 2001 Tim Janik <timj@gtk.org> * gtk/gtkiconfactory.c: * gtk/gtkitemfactory.c: use gdk_pixbuf_new_from_stream(). fixed up item factory so inlined pixbufs actually work. Tue Jun 26 09:48:02 2001 Tim Janik <timj@gtk.org> * Makefile.am (noinst_PROGRAMS): get rid of make-inline-pixbuf * gdk-pixbuf-data.[hc]: provide gdk_pixbuf_new_from_stream() instead from gdk_pixbuf_new_from_inline(). * gdk-pixdata.[hc]: auxillary GdkPixdata structure, public installed API for applications that need to serialize/deserialize on their own (gimp, BEAST). * gdk-pixbuf/gdk-pixbuf-csource.c: provide publically installed program that can dump images in CSource format and Pixbuf stream format. supports RLE encoding, MACRO formatting etc... invoke with --help.