Go to the source code of this file.
◆ FT_Get_PS_Font_Info()
Definition at line 28 of file fttype1.c.
30 {
32 FT_Service_PsInfo service;
33
34
36 return FT_THROW( Invalid_Face_Handle );
37
38 if ( !afont_info )
40
42
43 if ( service && service->ps_get_font_info )
44 error = service->ps_get_font_info(
face, afont_info );
45 else
47
49 }
#define FT_FACE_FIND_SERVICE(face, ptr, id)
GLenum GLuint GLint GLenum face
◆ FT_Get_PS_Font_Private()
Definition at line 76 of file fttype1.c.
78 {
80 FT_Service_PsInfo service;
81
82
84 return FT_THROW( Invalid_Face_Handle );
85
86 if ( !afont_private )
88
90
91 if ( service && service->ps_get_font_private )
92 error = service->ps_get_font_private(
face, afont_private );
93 else
95
97 }
◆ FT_Get_PS_Font_Value()
Definition at line 103 of file fttype1.c.
108 {
110 FT_Service_PsInfo service =
NULL;
111
112
114 {
116
117 if ( service && service->ps_get_font_value )
120 }
121
123 }
◆ FT_Has_PS_Glyph_Names()
| FT_Has_PS_Glyph_Names |
( |
FT_Face |
face | ) |
|
Definition at line 55 of file fttype1.c.
56 {
58 FT_Service_PsInfo service;
59
60
62 {
64
65 if ( service && service->ps_has_glyph_names )
67 }
68
70 }