[pk] Define PK_FaceRec and other format specific structures.

* src/pk/pkdrivr.h: Define PK_Bitmap and PK_Glyph
structures to hold `pk' format specific values and
define PK_FaceRec to accomodate them.
This commit is contained in:
Parth Wazurkar 2018-07-12 22:28:58 +05:30
parent 1316b813fd
commit 24f39cba3d
1 changed files with 11 additions and 2 deletions

View File

@ -37,13 +37,22 @@ FT_BEGIN_HEADER
} PK_BitmapRec, *PK_Bitmap;
typedef struct PK_GlyphRec_
{
FT_UInt code_min, code_max;
PK_Bitmap bm_table;
FT_UInt ds, hppp, vppp;
FT_UInt font_bbx_w, font_bbx_h;
FT_UInt font_bbx_xoff, font_bbx_yoff;
} PK_GlyphRec, *PK_Glyph;
typedef struct PK_FaceRec_
{
FT_FaceRec root;
/* TO-DO */
PK_Glyph pk_glyph;
} PK_FaceRec, *PK_Face;
FT_EXPORT_VAR( const FT_Driver_ClassRec ) pk_driver_class;