1 /***************************************************************************/
5 /* FreeType PFR object methods (specification). */
7 /* Copyright 2002, 2003, 2004 by */
8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */
10 /* This file is part of the FreeType project, and may only be used, */
11 /* modified, and distributed under the terms of the FreeType project */
12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */
13 /* this file you indicate that you have read the license and */
14 /* understand and accept it fully. */
16 /***************************************************************************/
27 typedef struct PFR_FaceRec_
* PFR_Face
;
29 typedef struct PFR_SizeRec_
* PFR_Size
;
31 typedef struct PFR_SlotRec_
* PFR_Slot
;
34 typedef struct PFR_FaceRec_
38 PFR_LogFontRec log_font
;
39 PFR_PhyFontRec phy_font
;
44 typedef struct PFR_SizeRec_
51 typedef struct PFR_SlotRec_
60 pfr_face_init( FT_Stream stream
,
61 FT_Face face
, /* PFR_Face */
64 FT_Parameter
* params
);
67 pfr_face_done( FT_Face face
); /* PFR_Face */
71 pfr_face_get_kerning( FT_Face face
, /* PFR_Face */
78 pfr_slot_init( FT_GlyphSlot slot
); /* PFR_Slot */
81 pfr_slot_done( FT_GlyphSlot slot
); /* PFR_Slot */
85 pfr_slot_load( FT_GlyphSlot slot
, /* PFR_Slot */
86 FT_Size size
, /* PFR_Size */
88 FT_Int32 load_flags
);
93 #endif /* __PFROBJS_H__ */