X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=blobdiff_plain;f=lib%2Fgfxdevice.h;h=caaa983e56e75649af66d014c99dedc6c42b1733;hp=f01d79c4958f7fb8a2ce4d364821c61be0c520ca;hb=e0a27e1bd83ff2d60745dd6030e0f5ef7ef97b82;hpb=3170baa7c9b07a00774252fca579d72e2e68f332 diff --git a/lib/gfxdevice.h b/lib/gfxdevice.h index f01d79c..caaa983 100644 --- a/lib/gfxdevice.h +++ b/lib/gfxdevice.h @@ -35,6 +35,9 @@ typedef struct _gfxfont const char*id; int num_glyphs; int max_unicode; + + double ascent,descent; + gfxglyph_t*glyphs; int* unicode2glyph; } gfxfont_t; @@ -62,8 +65,10 @@ typedef struct _gfximage int height; } gfximage_t; +/* gradients: A radial gradient will start at 0,0 and have a radius of 1,0 + An axial gradient starts at -1,0 and ends at 1,0 + */ typedef enum {gfxgradient_radial, gfxgradient_linear} gfxgradienttype_t; - typedef struct _gfxgradient { gfxcolor_t color; @@ -107,7 +112,7 @@ typedef struct _gfxdevice void (*stroke)(struct _gfxdevice*dev, gfxline_t*line, gfxcoord_t width, gfxcolor_t*color, gfx_capType cap_style, gfx_joinType joint_style, gfxcoord_t miterLimit); void (*fill)(struct _gfxdevice*dev, gfxline_t*line, gfxcolor_t*color); void (*fillbitmap)(struct _gfxdevice*dev, gfxline_t*line, gfximage_t*img, gfxmatrix_t*imgcoord2devcoord, gfxcxform_t*cxform); //cxform? tiling? - void (*fillgradient)(struct _gfxdevice*dev, gfxline_t*line, gfxgradient_t*gradient, gfxgradienttype_t type, gfxmatrix_t*matrix); //? + void (*fillgradient)(struct _gfxdevice*dev, gfxline_t*line, gfxgradient_t*gradient, gfxgradienttype_t type, gfxmatrix_t*gradcoord2devcoord); //? /* deprecated */ void (*addfont)(struct _gfxdevice*dev, gfxfont_t*font); @@ -117,6 +122,8 @@ typedef struct _gfxdevice void (*endpage)(struct _gfxdevice*dev); + const char* (*geterror)(); + gfxresult_t* (*finish)(struct _gfxdevice*dev); void* internal;