#include <ft2build.h>
Go to the source code of this file.
◆ 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 }