aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorJohn Hawthorn <jhawthor@uvic.ca>2008-06-14 00:26:13 -0700
committerJohn Hawthorn <jhawthor@uvic.ca>2008-06-14 00:26:13 -0700
commit1b9ee887b6cb5f6cf0824f2e3b5ff503daa6f0be (patch)
treea1243ded18e8e2ad064fbe2c553acb814a2a8016 /src/main.c
parent79117a49ad8b913f16365e5fea4cf50aa9346f7f (diff)
downloadmirror-meh-1b9ee887b6cb5f6cf0824f2e3b5ff503daa6f0be.tar.gz
mirror-meh-1b9ee887b6cb5f6cf0824f2e3b5ff503daa6f0be.tar.bz2
mirror-meh-1b9ee887b6cb5f6cf0824f2e3b5ff503daa6f0be.zip
working gif support
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c
index 41b09ce..c116fab 100644
--- a/src/main.c
+++ b/src/main.c
@@ -206,7 +206,6 @@ void run(struct imagenode *image){
case MapNotify:
break;
case ConfigureNotify:
- printf("ConfigureNotify\n");
if(width != event.xconfigure.width || height != event.xconfigure.height){
if(img){
free(img->data);
@@ -273,7 +272,6 @@ void run(struct imagenode *image){
free(tmp);
}
setaspect(bufwidth, bufheight);
- printf("setaspect\n");
}
if(!img){
if(width * bufheight > height * bufwidth){
@@ -295,7 +293,6 @@ void run(struct imagenode *image){
yoffset = 0;
}
img = create_image_from_buffer(buf, imagewidth, imageheight, bufwidth, bufheight);
- printf("img\n");
assert(img);
}
XFillRectangle(display, window, gc, 0, 0, fillw, fillh);