forked from minhngoc25a/freetype2
[gf] Add `tfm' element in `GF_FaceRec'.
* src/gf/gfdrivr.h: Add `tfm' element in the `GF_FaceRec' structure to accomodate the tfm metric values.
This commit is contained in:
parent
5b32e1a9d9
commit
0f41489a09
|
@ -30,11 +30,11 @@ FT_BEGIN_HEADER
|
|||
/* BitmapRec for GF format specific glyphs */
|
||||
typedef struct GF_BitmapRec_
|
||||
{
|
||||
FT_UInt bbx_width, bbx_height;
|
||||
FT_UInt off_x, off_y;
|
||||
FT_UInt mv_x, mv_y;
|
||||
FT_Byte *bitmap;
|
||||
FT_UInt raster;
|
||||
FT_UInt bbx_width, bbx_height;
|
||||
FT_UInt off_x, off_y;
|
||||
FT_UInt mv_x, mv_y;
|
||||
FT_Byte *bitmap;
|
||||
FT_UInt raster;
|
||||
|
||||
} GF_BitmapRec, *GF_Bitmap;
|
||||
|
||||
|
@ -52,8 +52,11 @@ FT_BEGIN_HEADER
|
|||
|
||||
typedef struct GF_FaceRec_
|
||||
{
|
||||
FT_FaceRec root;
|
||||
GF_Glyph gf_glyph;
|
||||
FT_FaceRec root;
|
||||
GF_Glyph gf_glyph;
|
||||
|
||||
const void* tfm;
|
||||
const void* tfm_data;
|
||||
|
||||
} GF_FaceRec, *GF_Face;
|
||||
|
||||
|
|
Loading…
Reference in New Issue