From a0ff27ead3e29bbc9f44f2e34a8f90718b3a1cc2 Mon Sep 17 00:00:00 2001 From: kramm Date: Sat, 30 Apr 2005 12:37:41 +0000 Subject: [PATCH] display clipped/tiled flag for bitmap fill --- src/swfdump.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/swfdump.c b/src/swfdump.c index f6da47a..be2a3dd 100644 --- a/src/swfdump.c +++ b/src/swfdump.c @@ -588,9 +588,15 @@ char* fillstyle2str(FILLSTYLE*style) case 0x10: case 0x12: sprintf(stylebuf, "GRADIENT (%d steps)", style->gradient.num); break; - case 0x40: case 0x41: + case 0x40: /* TODO: display information about that bitmap */ - sprintf(stylebuf, "BITMAP %d", style->id_bitmap); + sprintf(stylebuf, "BITMAPt %d", style->id_bitmap); + /* TODO: show matrix */ + break; + case 0x41: + /* TODO: display information about that bitmap */ + sprintf(stylebuf, "BITMAPc %d", style->id_bitmap); + /* TODO: show matrix */ break; default: sprintf(stylebuf, "UNKNOWN[%02x]",style->type); -- 1.7.10.4