#include <ft2build.h>
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 74 of file ftbdf.h.
75 {
80
@ BDF_PROPERTY_TYPE_CARDINAL
@ BDF_PROPERTY_TYPE_INTEGER
FT_BEGIN_HEADER enum BDF_PropertyType_ BDF_PropertyType
◆ FT_Get_BDF_Charset_ID()
Definition at line 29 of file ftbdf.c.
32 {
36
37 FT_Service_BDF service;
38
39
41 return FT_THROW( Invalid_Face_Handle );
42
44
45 if ( service && service->get_charset_id )
47 else
49
50 if ( acharset_encoding )
52
53 if ( acharset_registry )
55
57 }
#define FT_FACE_FIND_SERVICE(face, ptr, id)
GLenum GLuint GLint GLenum face
◆ FT_Get_BDF_Property()
Definition at line 63 of file ftbdf.c.
66 {
68
69 FT_Service_BDF service;
70
71
73 return FT_THROW( Invalid_Face_Handle );
74
75 if ( !aproperty )
77
79
81
82 if ( service && service->get_property )
83 error = service->get_property(
face, prop_name, aproperty );
84 else
86
88 }