Go to the source code of this file.
◆ FT_ADVANCE_FLAG_FAST_ONLY
| #define FT_ADVANCE_FLAG_FAST_ONLY 0x20000000L |
◆ FT_Get_Advance()
Definition at line 74 of file ftadvanc.c.
78 {
80
81
83 return FT_THROW( Invalid_Face_Handle );
84
85 if ( !padvance )
87
89 return FT_THROW( Invalid_Glyph_Index );
90
91 func =
face->driver->clazz->get_advances;
93 {
95
96
100
103 }
104
106 }
FT_Get_Advances(FT_Face face, FT_UInt start, FT_UInt count, FT_Int32 flags, FT_Fixed *padvances)
static FT_Error _ft_face_scale_advances(FT_Face face, FT_Fixed *advances, FT_UInt count, FT_Int32 flags)
#define LOAD_ADVANCE_FAST_CHECK(face, flags)
FT_Error(* FT_Face_GetAdvancesFunc)(FT_Face face, FT_UInt first, FT_UInt count, FT_Int32 flags, FT_Fixed *advances)
GLenum GLuint GLint GLenum face
Referenced by af_shaper_get_elem().
◆ FT_Get_Advances()
Definition at line 112 of file ftadvanc.c.
117 {
119
121
124
125
127 return FT_THROW( Invalid_Face_Handle );
128
129 if ( !padvances )
130 return FT_THROW( Invalid_Argument );
131
135 return FT_THROW( Invalid_Glyph_Index );
136
139
140 func =
face->driver->clazz->get_advances;
142 {
146
149 }
150
152
154 return FT_THROW( Unimplemented_Feature );
155
158 for ( nn = 0; nn <
count; nn++ )
159 {
162 break;
163
164
168 }
169
171 }
FT_Load_Glyph(FT_Face face, FT_UInt glyph_index, FT_Int32 load_flags)
#define FT_LOAD_VERTICAL_LAYOUT
#define FT_LOAD_ADVANCE_ONLY
#define FT_ADVANCE_FLAG_FAST_ONLY
GLuint GLuint GLsizei count
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint factor
Referenced by FT_Get_Advance().