#include <ft2build.h>
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 76 of file ftotval.c.
78 {
80
81
83 return;
84
86
88 }
#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 29 of file ftotval.c.
36 {
37 FT_Service_OTvalidate service;
39
40
42 {
45 }
46
47 if ( !( BASE_table &&
48 GDEF_table &&
49 GPOS_table &&
50 GSUB_table &&
51 JSTF_table ) )
52 {
55 }
56
58
59 if ( service )
61 validation_flags,
62 BASE_table,
63 GDEF_table,
64 GPOS_table,
65 GSUB_table,
66 JSTF_table );
67 else
69
72 }
#define FT_FACE_FIND_GLOBAL_SERVICE(face, ptr, id)