QtBase  v6.3.1
Classes | Macros | Typedefs
autohint.h File Reference
#include <freetype/freetype.h>
Include dependency graph for autohint.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  FT_AutoHinter_InterfaceRec_
 

Macros

#define FT_DECLARE_AUTOHINTER_INTERFACE(class_)    FT_CALLBACK_TABLE const FT_AutoHinter_InterfaceRec class_;
 
#define FT_DEFINE_AUTOHINTER_INTERFACE( class_, reset_face_, get_global_hints_, done_global_hints_, load_glyph_)
 

Typedefs

typedef typedefFT_BEGIN_HEADER struct FT_AutoHinterRec_ * FT_AutoHinter
 
typedef void(* FT_AutoHinter_GlobalGetFunc) (FT_AutoHinter hinter, FT_Face face, void **global_hints, long *global_len)
 
typedef void(* FT_AutoHinter_GlobalDoneFunc) (FT_AutoHinter hinter, void *global)
 
typedef void(* FT_AutoHinter_GlobalResetFunc) (FT_AutoHinter hinter, FT_Face face)
 
typedef FT_Error(* FT_AutoHinter_GlyphLoadFunc) (FT_AutoHinter hinter, FT_GlyphSlot slot, FT_Size size, FT_UInt glyph_index, FT_Int32 load_flags)
 
typedef struct FT_AutoHinter_InterfaceRec_ FT_AutoHinter_InterfaceRec
 
typedef struct FT_AutoHinter_InterfaceRec_FT_AutoHinter_Interface
 

Macro Definition Documentation

◆ FT_DECLARE_AUTOHINTER_INTERFACE

#define FT_DECLARE_AUTOHINTER_INTERFACE (   class_)     FT_CALLBACK_TABLE const FT_AutoHinter_InterfaceRec class_;

Definition at line 210 of file autohint.h.

◆ FT_DEFINE_AUTOHINTER_INTERFACE

#define FT_DEFINE_AUTOHINTER_INTERFACE (   class_,
  reset_face_,
  get_global_hints_,
  done_global_hints_,
  load_glyph_ 
)
Value:
FT_CALLBACK_TABLE_DEF \
const FT_AutoHinter_InterfaceRec class_ = \
{ \
reset_face_, \
get_global_hints_, \
done_global_hints_, \
load_glyph_ \
};

Definition at line 213 of file autohint.h.

Typedef Documentation

◆ FT_AutoHinter

typedef typedefFT_BEGIN_HEADER struct FT_AutoHinterRec_* FT_AutoHinter

Definition at line 79 of file autohint.h.

◆ FT_AutoHinter_GlobalDoneFunc

typedef void(* FT_AutoHinter_GlobalDoneFunc) (FT_AutoHinter hinter, void *global)

Definition at line 131 of file autohint.h.

◆ FT_AutoHinter_GlobalGetFunc

typedef void(* FT_AutoHinter_GlobalGetFunc) (FT_AutoHinter hinter, FT_Face face, void **global_hints, long *global_len)

Definition at line 107 of file autohint.h.

◆ FT_AutoHinter_GlobalResetFunc

typedef void(* FT_AutoHinter_GlobalResetFunc) (FT_AutoHinter hinter, FT_Face face)

Definition at line 153 of file autohint.h.

◆ FT_AutoHinter_GlyphLoadFunc

typedef FT_Error(* FT_AutoHinter_GlyphLoadFunc) (FT_AutoHinter hinter, FT_GlyphSlot slot, FT_Size size, FT_UInt glyph_index, FT_Int32 load_flags)

Definition at line 184 of file autohint.h.

◆ FT_AutoHinter_Interface

◆ FT_AutoHinter_InterfaceRec