From 47f4e05ca2188b8055a38381846a42487fe76ef1 Mon Sep 17 00:00:00 2001 From: kramm Date: Sun, 19 Jun 2005 10:56:16 +0000 Subject: [PATCH] startpage() now only takes width/height --- lib/gfxdevice.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 1.7.10.4