Go to the source code of this file.
◆ BDF_Property
◆ BDF_PropertyRec
◆ BDF_PropertyType
◆ BDF_PropertyType_
| Enumerator |
|---|
| BDF_PROPERTY_TYPE_NONE | |
| BDF_PROPERTY_TYPE_ATOM | |
| BDF_PROPERTY_TYPE_INTEGER | |
| BDF_PROPERTY_TYPE_CARDINAL | |
Definition at line 73 of file ftbdf.h.
74 {
79
@ BDF_PROPERTY_TYPE_CARDINAL
@ BDF_PROPERTY_TYPE_INTEGER
FT_BEGIN_HEADER enum BDF_PropertyType_ BDF_PropertyType
◆ FT_Get_BDF_Charset_ID()
Definition at line 28 of file ftbdf.c.
31 {
33 const char* encoding =
NULL;
35
36 FT_Service_BDF service;
37
38
40 return FT_THROW( Invalid_Face_Handle );
41
43
44 if ( service && service->get_charset_id )
46 else
48
49 if ( acharset_encoding )
50 *acharset_encoding = encoding;
51
52 if ( acharset_registry )
54
56 }
#define FT_FACE_FIND_SERVICE(face, ptr, id)
GLenum GLuint GLint GLenum face
◆ FT_Get_BDF_Property()
Definition at line 62 of file ftbdf.c.
65 {
67
68 FT_Service_BDF service;
69
70
72 return FT_THROW( Invalid_Face_Handle );
73
74 if ( !aproperty )
76
78
80
81 if ( service && service->get_property )
82 error = service->get_property(
face, prop_name, aproperty );
83 else
85
87 }