#include <ft2build.h>
Go to the source code of this file.
◆ FT_Get_PS_Font_Info()
Definition at line 29 of file fttype1.c.
31 {
33 FT_Service_PsInfo service;
34
35
37 return FT_THROW( Invalid_Face_Handle );
38
39 if ( !afont_info )
41
43
44 if ( service && service->ps_get_font_info )
45 error = service->ps_get_font_info(
face, afont_info );
46 else
48
50 }
#define FT_FACE_FIND_SERVICE(face, ptr, id)
GLenum GLuint GLint GLenum face
◆ FT_Get_PS_Font_Private()
Definition at line 77 of file fttype1.c.
79 {
81 FT_Service_PsInfo service;
82
83
85 return FT_THROW( Invalid_Face_Handle );
86
87 if ( !afont_private )
89
91
92 if ( service && service->ps_get_font_private )
93 error = service->ps_get_font_private(
face, afont_private );
94 else
96
98 }
◆ FT_Get_PS_Font_Value()
Definition at line 104 of file fttype1.c.
109 {
111 FT_Service_PsInfo service =
NULL;
112
113
115 {
117
118 if ( service && service->ps_get_font_value )
121 }
122
124 }
◆ FT_Has_PS_Glyph_Names()
FT_Has_PS_Glyph_Names |
( |
FT_Face |
face | ) |
|
Definition at line 56 of file fttype1.c.
57 {
59 FT_Service_PsInfo service;
60
61
63 {
65
66 if ( service && service->ps_has_glyph_names )
68 }
69
71 }