diff options
author | Jonathan Blandford <jrb@redhat.com> | 1999-11-02 23:49:22 +0000 |
---|---|---|
committer | Jonathan Blandford <jrb@src.gnome.org> | 1999-11-02 23:49:22 +0000 |
commit | 53d5c49dbbf3dab356fae1a9fc297ca4cc689a9d (patch) | |
tree | 85143fa59b8fe583610d41d79b332b258c999aaf /demos/testpixbuf.c | |
parent | 587d91caad20cbe5feee08652acabf55dc23070e (diff) | |
download | gtk+-53d5c49dbbf3dab356fae1a9fc297ca4cc689a9d.tar.gz |
Now progressive gif loading works! It's a little slow though. )-:
1999-11-02 Jonathan Blandford <jrb@redhat.com>
* src/io-gif.c (gif_main_loop): Now progressive gif loading works!
It's a little slow though. )-:
Diffstat (limited to 'demos/testpixbuf.c')
-rw-r--r-- | demos/testpixbuf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/testpixbuf.c b/demos/testpixbuf.c index 350b4cba1e..4fedda2b92 100644 --- a/demos/testpixbuf.c +++ b/demos/testpixbuf.c @@ -520,7 +520,7 @@ main (int argc, char **argv) int nbytes; nbytes = fread(buf, 1, readlen, file); - printf("."); +/* printf(".");*/ fflush(stdout); if (gdk_pixbuf_loader_write (GDK_PIXBUF_LOADER (pixbuf_loader), buf, nbytes) == FALSE) @@ -529,7 +529,7 @@ main (int argc, char **argv) while (gtk_events_pending()) gtk_main_iteration(); } - printf("\n"); +/* printf("\n");*/ gtk_timeout_remove (timeout); gdk_pixbuf_loader_close (GDK_PIXBUF_LOADER (pixbuf_loader)); gtk_object_destroy (GTK_OBJECT(pixbuf_loader)); |