X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fgfxtools.c;h=f34bcf44c26d85547d0a1ada02043c3a8bdd03fa;hb=f52e48e2f55dd3a724da00a47552b7edba5f4dfa;hp=eeb1a7a6203c86399d676756cc369f8aed710a92;hpb=2db9a5dc2ed4ae59e250fedf293a6fec811d496a;p=swftools.git diff --git a/lib/gfxtools.c b/lib/gfxtools.c index eeb1a7a..f34bcf4 100644 --- a/lib/gfxtools.c +++ b/lib/gfxtools.c @@ -25,6 +25,7 @@ #include #include #include "gfxtools.h" +#include "gfxfont.h" typedef struct _linedraw_internal { @@ -43,6 +44,7 @@ static void linedraw_moveTo(gfxdrawer_t*d, gfxcoord_t x, gfxcoord_t y) return; } + l->sx = l->sy = 0; d->x = l->x = x; d->y = l->y = y; l->next = 0; @@ -772,6 +774,19 @@ gfxfontlist_t*gfxfontlist_addfont(gfxfontlist_t*list, gfxfont_t*font) return l; } } +void gfxfontlist_free(gfxfontlist_t*list, char deletefonts) +{ + gfxfontlist_t*l = list; + while(l) { + gfxfontlist_t*next = l; + memset(l, 0, sizeof(*l)); + if(l->font) { + gfxfont_free(l->font); + } + free(l); + l = next; + } +} gfxline_t*gfxline_makerectangle(int x1,int y1,int x2, int y2) {