From: kramm Date: Sun, 19 Jun 2005 10:56:16 +0000 (+0000) Subject: startpage() now only takes width/height X-Git-Tag: release-0-7-0~51 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=47f4e05ca2188b8055a38381846a42487fe76ef1 startpage() now only takes width/height --- diff --git a/lib/gfxdevice.h b/lib/gfxdevice.h index 1526a4b..a61f27c 100644 --- a/lib/gfxdevice.h +++ b/lib/gfxdevice.h @@ -96,7 +96,7 @@ typedef struct _gfxdevice { int (*setparameter)(struct _gfxdevice*dev, const char*key, const char*value); - void (*startpage)(struct _gfxdevice*dev, int xmin, int ymin, int xmax, int ymax); /*xmin/ymin?*/ + void (*startpage)(struct _gfxdevice*dev, int width, int height); void (*startclip)(struct _gfxdevice*dev, gfxline_t*line); void (*endclip)(struct _gfxdevice*dev); @@ -110,7 +110,7 @@ typedef struct _gfxdevice void (*drawlink)(struct _gfxdevice*dev, gfxline_t*line, char*action); - void (*endpage)(struct _gfxdevice*dev); //? + void (*endpage)(struct _gfxdevice*dev); gfxresult_t* (*finish)(struct _gfxdevice*dev);