#include <ft2build.h>#include "t1driver.h"#include "t1gload.h"#include "t1load.h"#include "t1errors.h"#include "t1afm.h"Go to the source code of this file.
| #define FT_COMPONENT trace_t1driver |
Definition at line 49 of file t1driver.c.
| static FT_Module_Interface Get_Interface | ( | FT_Driver | driver, | |
| const FT_String * | t1_interface | |||
| ) | [static] |
Definition at line 215 of file t1driver.c.
References ft_service_list_lookup(), FT_UNUSED, and t1_services.
| static FT_Error t1_get_glyph_name | ( | T1_Face | face, | |
| FT_UInt | glyph_index, | |||
| FT_Pointer | buffer, | |||
| FT_UInt | buffer_max | |||
| ) | [static] |
| static const char* t1_get_ps_name | ( | T1_Face | face | ) | [static] |
Definition at line 101 of file t1driver.c.
| static FT_Error t1_ps_get_font_extra | ( | FT_Face | face, | |
| PS_FontExtraRec * | afont_extra | |||
| ) | [static] |
Definition at line 146 of file t1driver.c.
| static FT_Error t1_ps_get_font_info | ( | FT_Face | face, | |
| PS_FontInfoRec * | afont_info | |||
| ) | [static] |
Definition at line 136 of file t1driver.c.
| static FT_Error t1_ps_get_font_private | ( | FT_Face | face, | |
| PS_PrivateRec * | afont_private | |||
| ) | [static] |
Definition at line 165 of file t1driver.c.
| FT_CALLBACK_TABLE_DEF const FT_Driver_ClassRec t1_driver_class |
Definition at line 281 of file t1driver.c.
const FT_Service_GlyphDictRec t1_service_glyph_dict [static] |
Initial value:
Definition at line 88 of file t1driver.c.
const FT_Service_KerningRec t1_service_kerning [static] |
const FT_Service_MultiMastersRec t1_service_multi_masters [static] |
Initial value:
{
(FT_Get_MM_Func) T1_Get_Multi_Master,
(FT_Set_MM_Design_Func) T1_Set_MM_Design,
(FT_Set_MM_Blend_Func) T1_Set_MM_Blend,
(FT_Get_MM_Var_Func) T1_Get_MM_Var,
(FT_Set_Var_Design_Func)T1_Set_Var_Design
}
Definition at line 119 of file t1driver.c.
const FT_Service_PsInfoRec t1_service_ps_info [static] |
Initial value:
{
(PS_GetFontInfoFunc) t1_ps_get_font_info,
(PS_GetFontExtraFunc) t1_ps_get_font_extra,
(PS_HasGlyphNamesFunc) t1_ps_has_glyph_names,
(PS_GetFontPrivateFunc)t1_ps_get_font_private,
}
Definition at line 174 of file t1driver.c.
const FT_Service_PsFontNameRec t1_service_ps_name [static] |
const FT_ServiceDescRec t1_services[] [static] |
Initial value:
{
{ FT_SERVICE_ID_POSTSCRIPT_FONT_NAME, &t1_service_ps_name },
{ FT_SERVICE_ID_GLYPH_DICT, &t1_service_glyph_dict },
{ FT_SERVICE_ID_XF86_NAME, FT_XF86_FORMAT_TYPE_1 },
{ FT_SERVICE_ID_POSTSCRIPT_INFO, &t1_service_ps_info },
{ FT_SERVICE_ID_KERNING, &t1_service_kerning },
{ FT_SERVICE_ID_MULTI_MASTERS, &t1_service_multi_masters },
{ NULL, NULL }
}
Definition at line 196 of file t1driver.c.
Referenced by Get_Interface().
1.5.1