summaryrefslogtreecommitdiff
path: root/gdk-pixbuf/io-ani-animation.c
Commit message (Collapse)AuthorAgeFilesLines
* Updated FSF's addressDaniel Mustieles2014-01-311-3/+1
|
* Convert animation implementation to G_DEFINE_TYPEMatthias Clasen2011-12-161-74/+26
| | | | | | | | This has the nice side-effect of giving us thread-safe get_type functions, which might fix a few thumbnailing-related gnome-shell segfaults that have been accumulating in bugzilla. See e.g. https://bugzilla.redhat.com/show_bug.cgi?id=756343
* Make it compileMatthias Clasen2010-06-251-1/+0
|
* Do not use static GTypeInfo and GInterfaceInfoNicola Fontana2009-11-061-2/+2
| | | | | | | | | Either g_type_register_static_simple (used by G_DEFINE_TYPE_EXTENDED) and G_IMPLEMENT_INTERFACE use automatic variables for GTypeInfo and GInterfaceInfo structs, while tutorials and source code often use static variables. This commit consistently adopts the former method. https://bugzilla.gnome.org/show_bug.cgi?id=600158
* Include "config.h" instead of <config.h> Command used: find -nameJohan Dahlin2008-06-221-1/+1
| | | | | | | | | | | | 2008-06-21 Johan Dahlin <jdahlin@async.com.br> * *.[ch]: Include "config.h" instead of <config.h> Command used: find -name \*.[ch]|xargs perl -p -i -e 's/^#include <config.h>/#include "config.h"/g' Rubberstamped by Mitch and Tim svn path=/trunk/; revision=20669
* Intern type names before registering the type to avoid unnecessary copies.Matthias Clasen2005-08-311-2/+2
| | | | | | | | | | | | | | 2005-08-31 Matthias Clasen <mclasen@redhat.com> * io-ani-animation.c (gdk_pixbuf_ani_anim_iter_get_type) (gdk_pixbuf_ani_anim_get_type): * io-gif-animation.c (gdk_pixbuf_gif_anim_get_type) (gdk_pixbuf_gif_anim_iter_get_type): * gdk-pixbuf-loader.c (gdk_pixbuf_loader_get_type): * gdk-pixbuf.c (gdk_pixbuf_get_type): * gdk-pixbuf-animation.c (gdk_pixbuf_animation_get_type): Intern type names before registering the type to avoid unnecessary copies.
* New loader, for .ANI animations.Matthias Clasen2002-09-061-0/+347
* io-ani.c, io-ani-animation.h, io-ani-animation.c, pixbufloader_ani.def, Makefile.am, gdk-pixbuf-io.c: New loader, for .ANI animations.