Go to the source code of this file.
◆ FT_VALIDATE_BASE
| #define FT_VALIDATE_BASE 0x0100 |
◆ FT_VALIDATE_GDEF
| #define FT_VALIDATE_GDEF 0x0200 |
◆ FT_VALIDATE_GPOS
| #define FT_VALIDATE_GPOS 0x0400 |
◆ FT_VALIDATE_GSUB
| #define FT_VALIDATE_GSUB 0x0800 |
◆ FT_VALIDATE_JSTF
| #define FT_VALIDATE_JSTF 0x1000 |
◆ FT_VALIDATE_MATH
| #define FT_VALIDATE_MATH 0x2000 |
◆ FT_VALIDATE_OT
◆ FT_OpenType_Free()
Definition at line 75 of file ftotval.c.
77 {
79
80
82 return;
83
85
87 }
#define FT_FACE_MEMORY(x)
typedefFT_BEGIN_HEADER struct FT_MemoryRec_ * FT_Memory
GLenum GLuint GLint GLenum face
static char memory[1024 *256]
◆ FT_OpenType_Validate()
Definition at line 28 of file ftotval.c.
35 {
36 FT_Service_OTvalidate service;
38
39
41 {
44 }
45
46 if ( !( BASE_table &&
47 GDEF_table &&
48 GPOS_table &&
49 GSUB_table &&
50 JSTF_table ) )
51 {
54 }
55
57
58 if ( service )
60 validation_flags,
61 BASE_table,
62 GDEF_table,
63 GPOS_table,
64 GSUB_table,
65 JSTF_table );
66 else
68
71 }
#define FT_FACE_FIND_GLOBAL_SERVICE(face, ptr, id)