Visualization Library 2.0.0-b5

A lightweight C++ OpenGL middleware for 2D/3D graphics

VL     Star     Watch     Fork     Issue

[Download] [Tutorials] [All Classes] [Grouped Classes]
Macros | Functions | Variables
cffdrivr.c File Reference
#include <ft2build.h>
#include "cffdrivr.h"
#include "cffgload.h"
#include "cffload.h"
#include "cffcmap.h"
#include "cffparse.h"
#include "cfferrs.h"
#include "cffpic.h"

Go to the source code of this file.

Macros

#define FT_COMPONENT   trace_cffdriver
 
#define PAIR_TAG(left, right)
 
#define CFF_SIZE_SELECT   0
 

Functions

 cff_get_kerning (FT_Face ttface, FT_UInt left_glyph, FT_UInt right_glyph, FT_Vector *kerning)
 
 cff_glyph_load (FT_GlyphSlot cffslot, FT_Size cffsize, FT_UInt glyph_index, FT_Int32 load_flags)
 
 cff_get_advances (FT_Face face, FT_UInt start, FT_UInt count, FT_Int32 flags, FT_Fixed *advances)
 
 FT_DEFINE_SERVICE_GLYPHDICTREC (cff_service_glyph_dict,(FT_GlyphDict_GetNameFunc) cff_get_glyph_name,(FT_GlyphDict_NameIndexFunc) cff_get_name_index) static FT_Int cff_ps_has_glyph_names(FT_Face face)
 
 FT_DEFINE_SERVICE_PSINFOREC (cff_service_ps_info,(PS_GetFontInfoFunc) cff_ps_get_font_info,(PS_GetFontExtraFunc) NULL,(PS_HasGlyphNamesFunc) cff_ps_has_glyph_names,(PS_GetFontPrivateFunc) NULL,(PS_GetFontValueFunc) NULL) static const char *cff_get_ps_name(CFF_Face face)
 
 FT_DEFINE_SERVICE_PSFONTNAMEREC (cff_service_ps_name,(FT_PsName_GetFunc) cff_get_ps_name) static FT_Error cff_get_cmap_info(FT_CharMap charmap
 
 if (cmap->clazz !=&CFF_CMAP_ENCODING_CLASS_REC_GET &&cmap->clazz !=&CFF_CMAP_UNICODE_CLASS_REC_GET)
 
 FT_DEFINE_SERVICE_TTCMAPSREC (cff_service_get_cmap_info,(TT_CMap_Info_GetFunc) cff_get_cmap_info) static FT_Error cff_get_ros(CFF_Face face
 
 if (cff)
 
 FT_DEFINE_SERVICE_CIDREC (cff_service_cid_info,(FT_CID_GetRegistryOrderingSupplementFunc) cff_get_ros,(FT_CID_GetIsInternallyCIDKeyedFunc) cff_get_is_cid,(FT_CID_GetCIDFromGlyphIndexFunc) cff_get_cid_from_glyph_index) static FT_Error cff_property_set(FT_Module module
 
 if (!ft_strcmp(property_name, "hinting-engine"))
 
else if (!ft_strcmp(property_name, "no-stem-darkening"))
 
 FT_TRACE0 (("cff_property_set: missing property `%s'\, property_name))
 
return FT_THROW (Missing_Property)
 
 FT_DEFINE_SERVICE_PROPERTIESREC (cff_service_properties,(FT_Properties_SetFunc) cff_property_set,(FT_Properties_GetFunc) cff_property_get) FT_DEFINE_SERVICEDESCREC7(cff_services
 
&CFF_SERVICE_PROPERTIES_GET cff_get_interface (FT_Module driver, const char *module_interface)
 

Variables

TT_CMapInfocmap_info
 
FT_Error error = FT_Err_Ok
 
FT_Face face = FT_CMAP_FACE( cmap )
 
FT_Library library = FT_FACE_LIBRARY( face )
 
cmap_info language = 0
 
cmap_info format = 0
 
const char ** registry
 
const char const char ** ordering
 
const char const char FT_Intsupplement
 
CFF_Font cff = (CFF_Font)face->extra.data
 
Fail __pad0__
 
const char * property_name
 
const char const voidvalue
 
CFF_Driver driver = (CFF_Driver)module
 
 FT_SERVICE_ID_XF86_NAME
 
 FT_XF86_FORMAT_CFF
 
 FT_SERVICE_ID_POSTSCRIPT_INFO
 
CFF_SERVICE_PS_INFO_GET
 
 FT_SERVICE_ID_POSTSCRIPT_FONT_NAME
 
CFF_SERVICE_PS_NAME_GET
 
 FT_SERVICE_ID_GLYPH_DICT
 
CFF_SERVICE_GLYPH_DICT_GET
 
 FT_SERVICE_ID_TT_CMAP
 
CFF_SERVICE_GET_CMAP_INFO_GET
 
 FT_SERVICE_ID_CID
 
CFF_SERVICE_CID_INFO_GET
 
 FT_SERVICE_ID_PROPERTIES
 

Macro Definition Documentation

◆ CFF_SIZE_SELECT

#define CFF_SIZE_SELECT   0

Definition at line 735 of file cffdrivr.c.

◆ FT_COMPONENT

#define FT_COMPONENT   trace_cffdriver

Definition at line 50 of file cffdrivr.c.

◆ PAIR_TAG

#define PAIR_TAG (   left,
  right 
)
Value:
( ( (FT_ULong)left << 16 ) | \
unsigned long FT_ULong
Definition: fttypes.h:249
GLdouble GLdouble right
GLint left

Definition at line 67 of file cffdrivr.c.

Function Documentation

◆ cff_get_advances()

cff_get_advances ( FT_Face  face,
FT_UInt  start,
FT_UInt  count,
FT_Int32  flags,
FT_Fixed advances 
)

◆ cff_get_interface()

& CFF_SERVICE_PROPERTIES_GET cff_get_interface ( FT_Module  driver,
const char *  module_interface 
)

◆ cff_get_kerning()

cff_get_kerning ( FT_Face  ttface,
FT_UInt  left_glyph,
FT_UInt  right_glyph,
FT_Vector kerning 
)

◆ cff_glyph_load()

cff_glyph_load ( FT_GlyphSlot  cffslot,
FT_Size  cffsize,
FT_UInt  glyph_index,
FT_Int32  load_flags 
)

Definition at line 153 of file cffdrivr.c.

References cff_slot_load(), error, FT_CALLBACK_DEF, FT_LOAD_NO_HINTING, FT_LOAD_NO_SCALE, FT_THROW(), and NULL.

Referenced by cff_get_advances().

◆ FT_DEFINE_SERVICE_CIDREC()

FT_DEFINE_SERVICE_CIDREC ( cff_service_cid_info  ,
(FT_CID_GetRegistryOrderingSupplementFunc cff_get_ros,
(FT_CID_GetIsInternallyCIDKeyedFunc cff_get_is_cid,
(FT_CID_GetCIDFromGlyphIndexFunc cff_get_cid_from_glyph_index 
)

◆ FT_DEFINE_SERVICE_GLYPHDICTREC()

FT_DEFINE_SERVICE_GLYPHDICTREC ( cff_service_glyph_dict  ,
(FT_GlyphDict_GetNameFunc cff_get_glyph_name,
(FT_GlyphDict_NameIndexFunc cff_get_name_index 
)

Definition at line 302 of file cffdrivr.c.

◆ FT_DEFINE_SERVICE_PROPERTIESREC()

FT_DEFINE_SERVICE_PROPERTIESREC ( cff_service_properties  ,
(FT_Properties_SetFunc cff_property_set,
(FT_Properties_GetFunc cff_property_get 
)

◆ FT_DEFINE_SERVICE_PSFONTNAMEREC()

FT_DEFINE_SERVICE_PSFONTNAMEREC ( cff_service_ps_name  ,
(FT_PsName_GetFunc cff_get_ps_name 
)

◆ FT_DEFINE_SERVICE_PSINFOREC()

FT_DEFINE_SERVICE_PSINFOREC ( cff_service_ps_info  ,
(PS_GetFontInfoFunc cff_ps_get_font_info,
(PS_GetFontExtraFunc NULL,
(PS_HasGlyphNamesFunc cff_ps_has_glyph_names,
(PS_GetFontPrivateFunc NULL,
(PS_GetFontValueFunc NULL 
) const

Definition at line 365 of file cffdrivr.c.

◆ FT_DEFINE_SERVICE_TTCMAPSREC()

FT_DEFINE_SERVICE_TTCMAPSREC ( cff_service_get_cmap_info  ,
(TT_CMap_Info_GetFunc cff_get_cmap_info 
)

Referenced by if().

◆ FT_THROW()

return FT_THROW ( Missing_Property  )

Referenced by af_axis_hints_new_edge(), af_axis_hints_new_segment(), af_face_globals_get_metrics(), af_loader_load_glyph(), af_property_get(), af_property_get_face_globals(), af_property_set(), afm_parser_parse(), afm_parser_read_int(), BDF_Glyph_Load(), BDF_Size_Request(), cf2_getSeacComponent(), cf2_interpT2CharString(), cff_cmap_unicode_init(), cff_decoder_prepare(), cff_face_init(), cff_font_load(), cff_glyph_load(), cff_slot_load(), cid_face_init(), cid_load_glyph(), cid_parser_new(), cid_slot_load_glyph(), FT_Activate_Size(), FT_Add_Module(), FT_Attach_File(), FT_Attach_Stream(), FT_Bitmap_Convert(), FT_Bitmap_Done(), FT_Bitmap_Embolden(), ft_bitmap_glyph_init(), FT_ClassicKern_Validate(), FT_CMap_New(), FT_DEFINE_GLYPH(), FT_Done_Library(), FT_Done_Size(), FT_Get_Advance(), FT_Get_Advances(), FT_Get_Glyph(), FT_Get_Kerning(), FT_Get_PFR_Kerning(), FT_Get_PFR_Metrics(), FT_Get_Track_Kerning(), FT_Glyph_Copy(), FT_Glyph_To_Bitmap(), FT_Glyph_Transform(), FT_GlyphLoader_CheckPoints(), FT_Init_FreeType(), FT_Library_SetLcdFilter(), FT_Library_SetLcdFilterWeights(), FT_Load_Char(), FT_Load_Glyph(), FT_Load_Sfnt_Table(), FT_Match_Size(), FT_Matrix_Invert(), ft_mem_qalloc(), ft_mem_qrealloc(), FT_New_Face(), FT_New_GlyphSlot(), FT_New_Library(), FT_New_Memory_Face(), FT_New_Size(), FT_Open_Face(), FT_OpenType_Validate(), FT_Outline_Check(), FT_Outline_Copy(), FT_Outline_Decompose(), FT_Outline_Done(), FT_Outline_EmboldenXY(), FT_Outline_Get_Bitmap(), FT_Outline_New(), FT_Outline_New_Internal(), FT_Outline_Render(), ft_property_do(), FT_Raccess_Get_HeaderInfo(), FT_Remove_Module(), FT_Render_Glyph(), FT_Request_Size(), FT_Select_Charmap(), FT_Select_Size(), FT_Set_Charmap(), FT_Set_Renderer(), FT_Sfnt_Table_Info(), FT_Stream_EnterFrame(), FT_Stream_New(), FT_Stream_Open(), FT_Stream_OpenBzip2(), FT_Stream_OpenGzip(), FT_Stream_OpenLZW(), FT_Stream_ReadAt(), FT_Stream_ReadChar(), FT_Stream_ReadFields(), FT_Stream_ReadULong(), FT_Stream_ReadULongLE(), FT_Stream_ReadUOffset(), FT_Stream_ReadUShort(), FT_Stream_ReadUShortLE(), FT_Stream_Seek(), FT_Stream_Skip(), FT_Stroker_GetBorderCounts(), FT_Stroker_New(), FT_Stroker_ParseOutline(), FT_TrueTypeGX_Validate(), ftc_basic_family_load_glyph(), FTC_ImageCache_Lookup(), FTC_ImageCache_LookupScaler(), FTC_Manager_LookupFace(), FTC_Manager_LookupSize(), FTC_Manager_New(), FTC_Manager_RegisterCache(), FTC_SBitCache_Lookup(), FTC_SBitCache_LookupScaler(), FTC_SNode_New(), if(), PCF_Face_Init(), PCF_Glyph_Load(), PCF_Size_Request(), pfr_cmap_init(), pfr_extra_item_load_bitmap_info(), pfr_extra_item_load_kerning_pairs(), pfr_extra_item_load_stem_snaps(), pfr_extra_items_parse(), pfr_face_init(), pfr_log_font_load(), pfr_slot_load(), pfr_slot_load_bitmap(), ps_parser_skip_PS_token(), ps_parser_to_bytes(), ps_table_add(), Render_Gray_Glyph(), sfnt_init_face(), sfnt_load_face(), t1_builder_add_contour(), t1_decoder_init(), T1_Face_Init(), T1_Get_Multi_Master(), T1_Get_Track_Kerning(), T1_Load_Glyph(), T42_Driver_Init(), T42_Face_Init(), t42_parser_init(), tt_driver_init(), tt_face_build_cmaps(), tt_face_done(), tt_face_get_ps_name(), tt_face_goto_table(), tt_face_init(), tt_face_load_any(), tt_face_load_eblc(), tt_face_load_font_dir(), tt_face_load_gasp(), tt_face_load_hdmx(), tt_face_load_hmtx(), tt_face_load_kern(), tt_face_load_loca(), tt_face_load_name(), tt_face_load_strike_metrics(), TT_Load_Composite_Glyph(), TT_Load_Glyph_Header(), TT_Load_Simple_Glyph(), and tt_size_reset().

◆ FT_TRACE0()

FT_TRACE0 ( ("cff_property_set: missing property `%s'\ property_name )

◆ if() [1/4]

if ( cmap->clazz !  = &CFF_CMAP_ENCODING_CLASS_REC_GET && cmap->clazz != &CFF_CMAP_UNICODE_CLASS_REC_GET)

◆ if() [2/4]

if ( cff  )

◆ if() [3/4]

if ( ft_strcmpproperty_name, "hinting-engine")

Definition at line 588 of file cffdrivr.c.

References error.

◆ if() [4/4]

else if ( ft_strcmpproperty_name, "no-stem-darkening")

Definition at line 597 of file cffdrivr.c.

References error, FT_Bool, FT_THROW(), and FT_TRACE0().

Variable Documentation

◆ __pad0__

Fail __pad0__

Definition at line 500 of file cffdrivr.c.

◆ cff

◆ CFF_SERVICE_CID_INFO_GET

& CFF_SERVICE_CID_INFO_GET

Definition at line 671 of file cffdrivr.c.

◆ CFF_SERVICE_GET_CMAP_INFO_GET

& CFF_SERVICE_GET_CMAP_INFO_GET

Definition at line 671 of file cffdrivr.c.

◆ CFF_SERVICE_GLYPH_DICT_GET

& CFF_SERVICE_GLYPH_DICT_GET

Definition at line 671 of file cffdrivr.c.

◆ CFF_SERVICE_PS_INFO_GET

& CFF_SERVICE_PS_INFO_GET

Definition at line 671 of file cffdrivr.c.

◆ CFF_SERVICE_PS_NAME_GET

& CFF_SERVICE_PS_NAME_GET

Definition at line 671 of file cffdrivr.c.

◆ cmap_info

TT_CMapInfo* cmap_info
Initial value:
{
FT_CMap cmap = FT_CMAP( charmap )
#define FT_CMAP(x)
Definition: ftobjs.h:139

Definition at line 409 of file cffdrivr.c.

Referenced by FT_Get_CMap_Format(), FT_Get_CMap_Language_ID(), and tt_cmap_init().

◆ driver

CFF_Driver driver = (CFF_Driver)module

◆ error

return error = FT_Err_Ok

Definition at line 411 of file cffdrivr.c.

Referenced by af_axis_hints_new_edge(), af_axis_hints_new_segment(), af_face_globals_get_metrics(), af_face_globals_new(), af_glyph_hints_reload(), af_latin2_hints_compute_edges(), af_latin2_hints_compute_segments(), af_latin2_hints_detect_features(), af_latin2_metrics_init(), af_latin2_metrics_init_widths(), af_latin_hints_compute_edges(), af_latin_hints_compute_segments(), af_latin_hints_detect_features(), af_latin_metrics_init_widths(), af_loader_load_glyph(), af_loader_reset(), af_property_get(), af_property_get_face_globals(), af_property_set(), afm_parser_init(), afm_parser_parse(), BDF_Face_Init(), BDF_Glyph_Load(), bdf_load_font(), BDF_Size_Request(), cf2_arrstack_init(), cf2_decoder_parse_charstrings(), cf2_getSeacComponent(), cf2_hintmask_init(), cf2_interpT2CharString(), cf2_stack_init(), cff_builder_add_point1(), cff_builder_start_point(), cff_decoder_parse_charstrings(), cff_decoder_prepare(), cff_face_init(), cff_font_load(), cff_get_advances(), cff_get_glyph_data(), cff_glyph_load(), cff_index_access_element(), cff_index_get_name(), cff_parser_run(), cff_size_init(), cff_slot_load(), cid_face_init(), cid_face_open(), cid_load_glyph(), cid_parser_new(), cid_size_init(), cid_slot_load_glyph(), vlX::VLXSerializer::exportVLX(), vl::FontManager::FontManager(), FT_Add_Default_Modules(), FT_Add_Module(), FT_Attach_Stream(), FT_Bitmap_Convert(), FT_Bitmap_Copy(), FT_Bitmap_Embolden(), ft_bitmap_glyph_init(), FT_ClassicKern_Validate(), FT_CMap_Done(), FT_CMap_New(), FT_DEFINE_GLYPH(), FT_Done_Face(), FT_Done_Size(), FT_Get_Advance(), FT_Get_Advances(), FT_Get_BDF_Charset_ID(), FT_Get_BDF_Property(), FT_Get_CID_From_Glyph_Index(), FT_Get_CID_Is_Internally_CID_Keyed(), FT_Get_CID_Registry_Ordering_Supplement(), FT_Get_Glyph(), FT_Get_Glyph_Name(), FT_Get_Kerning(), FT_Get_MM_Var(), FT_Get_Multi_Master(), FT_Get_PFR_Advance(), FT_Get_PFR_Kerning(), FT_Get_PFR_Metrics(), FT_Get_PS_Font_Info(), FT_Get_PS_Font_Private(), FT_Get_SubGlyph_Info(), FT_Get_Track_Kerning(), FT_Get_WinFNT_Header(), FT_Glyph_Copy(), FT_Glyph_Stroke(), FT_Glyph_StrokeBorder(), FT_Glyph_To_Bitmap(), FT_Glyph_Transform(), FT_GlyphLoader_CheckPoints(), FT_GlyphLoader_CheckSubGlyphs(), FT_GlyphLoader_CopyPoints(), FT_GlyphLoader_CreateExtra(), FT_GlyphLoader_New(), ft_glyphslot_alloc_bitmap(), FT_GlyphSlot_Embolden(), FT_GlyphSlot_Own_Bitmap(), ft_highpow2(), FT_Init_FreeType(), FT_List_Iterate(), FT_Load_Glyph(), ft_mem_alloc(), ft_mem_dup(), ft_mem_qalloc(), ft_mem_qrealloc(), ft_mem_realloc(), FT_New_GlyphSlot(), FT_New_Library(), FT_New_Memory_Face(), FT_New_Size(), FT_Open_Face(), FT_OpenType_Validate(), FT_Outline_Decompose(), ft_outline_glyph_copy(), FT_Outline_New_Internal(), FT_Outline_Render(), FT_Raccess_Get_DataOffsets(), FT_Raccess_Get_HeaderInfo(), FT_Render_Glyph_Internal(), FT_Request_Size(), FT_Select_Size(), FT_Set_MM_Blend_Coordinates(), FT_Set_MM_Design_Coordinates(), FT_Set_Renderer(), FT_Set_Var_Blend_Coordinates(), FT_Set_Var_Design_Coordinates(), FT_Stream_EnterFrame(), FT_Stream_ExtractFrame(), FT_Stream_New(), FT_Stream_ReadAt(), FT_Stream_ReadChar(), FT_Stream_ReadFields(), FT_Stream_ReadULong(), FT_Stream_ReadULongLE(), FT_Stream_ReadUOffset(), FT_Stream_ReadUShort(), FT_Stream_ReadUShortLE(), FT_Stream_Seek(), FT_Stroker_ConicTo(), FT_Stroker_CubicTo(), FT_Stroker_EndSubPath(), FT_Stroker_GetBorderCounts(), FT_Stroker_GetCounts(), FT_Stroker_LineTo(), FT_Stroker_New(), FT_Stroker_ParseOutline(), FT_TrueTypeGX_Validate(), ft_validator_error(), ftc_basic_family_get_count(), ftc_basic_family_load_bitmap(), ftc_basic_family_load_glyph(), ftc_cache_init(), FTC_Cache_NewNode(), ftc_cmap_node_new(), FTC_CMapCache_Lookup(), ftc_face_node_init(), ftc_gcache_init(), FTC_GCache_New(), FTC_ImageCache_Lookup(), FTC_ImageCache_LookupScaler(), FTC_INode_New(), FTC_Manager_LookupFace(), FTC_Manager_LookupSize(), FTC_Manager_New(), FTC_Manager_RegisterCache(), FTC_MruList_New(), FTC_Node_Unref(), FTC_SBitCache_Lookup(), FTC_SBitCache_LookupScaler(), ftc_snode_compare(), FTC_SNode_New(), gxv_ctlPoint_validate(), if(), vlX::VLXSerializer::importVLX(), vl::Log::logMutex(), main(), vl::Log::operator<<(), parse_afm(), parse_fd_array(), PCF_Face_Init(), PCF_Glyph_Load(), pcf_load_font(), PCF_Size_Request(), pfr_cmap_init(), pfr_extra_item_load_bitmap_info(), pfr_extra_item_load_font_id(), pfr_extra_item_load_kerning_pairs(), pfr_extra_item_load_stem_snaps(), pfr_extra_items_parse(), pfr_face_get_kerning(), pfr_face_init(), pfr_get_advance(), pfr_header_load(), pfr_log_font_count(), pfr_log_font_load(), pfr_phy_font_load(), pfr_slot_load(), pfr_slot_load_bitmap(), ps_hints_apply(), ps_parser_load_field(), ps_parser_load_field_table(), ps_parser_skip_PS_token(), ps_parser_to_bytes(), ps_table_add(), ps_table_done(), ps_table_new(), vl::DrawElements< ArrayUShort1 >::render(), Render_Glyph(), sfnt_init_face(), sfnt_load_face(), vlX::VLXSerializer::signalExportError(), vlX::VLXSerializer::signalImportError(), t1_builder_add_contour(), t1_builder_add_point1(), t1_builder_start_point(), T1_Compute_Max_Advance(), t1_decoder_parse_charstrings(), T1_Face_Init(), T1_Get_Advances(), T1_Get_MM_Var(), T1_Get_Multi_Master(), T1_Get_Private_Dict(), T1_Load_Glyph(), T1_New_Parser(), T1_Open_Face(), T1_Parse_Glyph(), T1_Parse_Glyph_And_Get_Char_String(), T1_Read_Metrics(), T1_Set_MM_Blend(), T1_Set_MM_Design(), T1_Set_Var_Design(), T1_Size_Init(), T42_Face_Init(), T42_GlyphSlot_Init(), T42_GlyphSlot_Load(), t42_parser_init(), T42_Size_Init(), T42_Size_Request(), T42_Size_Select(), TT_Access_Glyph_Frame(), tt_cmap_init(), tt_face_build_cmaps(), tt_face_done(), tt_face_get_metrics(), tt_face_get_ps_name(), tt_face_goto_table(), tt_face_init(), tt_face_load_any(), tt_face_load_cmap(), tt_face_load_cvt(), tt_face_load_eblc(), tt_face_load_font_dir(), tt_face_load_fpgm(), tt_face_load_gasp(), tt_face_load_hdmx(), tt_face_load_hhea(), tt_face_load_hmtx(), tt_face_load_kern(), tt_face_load_loca(), tt_face_load_maxp(), tt_face_load_name(), tt_face_load_os2(), tt_face_load_pclt(), tt_face_load_post(), tt_face_load_prep(), tt_face_load_sbit_image(), TT_Load_Composite_Glyph(), TT_Load_Glyph(), TT_Load_Simple_Glyph(), tt_size_init(), tt_size_reset(), win32_error_file_func(), win32_read_file_func(), win32_write_file_func(), and WinMain().

◆ face

Definition at line 413 of file cffdrivr.c.

◆ format

Definition at line 418 of file cffdrivr.c.

◆ FT_SERVICE_ID_CID

FT_SERVICE_ID_CID

Definition at line 671 of file cffdrivr.c.

◆ FT_SERVICE_ID_GLYPH_DICT

FT_SERVICE_ID_GLYPH_DICT

Definition at line 671 of file cffdrivr.c.

◆ FT_SERVICE_ID_POSTSCRIPT_FONT_NAME

FT_SERVICE_ID_POSTSCRIPT_FONT_NAME

Definition at line 671 of file cffdrivr.c.

◆ FT_SERVICE_ID_POSTSCRIPT_INFO

FT_SERVICE_ID_POSTSCRIPT_INFO

Definition at line 671 of file cffdrivr.c.

◆ FT_SERVICE_ID_PROPERTIES

FT_SERVICE_ID_PROPERTIES

Definition at line 671 of file cffdrivr.c.

◆ FT_SERVICE_ID_TT_CMAP

FT_SERVICE_ID_TT_CMAP

Definition at line 671 of file cffdrivr.c.

Referenced by if().

◆ FT_SERVICE_ID_XF86_NAME

FT_SERVICE_ID_XF86_NAME

Definition at line 671 of file cffdrivr.c.

◆ FT_XF86_FORMAT_CFF

FT_XF86_FORMAT_CFF

Definition at line 671 of file cffdrivr.c.

◆ language

cmap_info language = 0

Definition at line 417 of file cffdrivr.c.

◆ library

◆ ordering

const char const char* * ordering

Definition at line 449 of file cffdrivr.c.

◆ property_name

const char* property_name

Definition at line 581 of file cffdrivr.c.

◆ registry

const char* * registry

◆ supplement

const char const char FT_Int* supplement
Initial value:
{
int FT_Error
Definition: fttypes.h:296
return FT_Err_Ok
Definition: ftbbox.c:645
FT_Error error
Definition: cffdrivr.c:411

Definition at line 452 of file cffdrivr.c.

◆ value

Initial value:
{
int FT_Error
Definition: fttypes.h:296
return FT_Err_Ok
Definition: ftbbox.c:645
FT_Error error
Definition: cffdrivr.c:411

Definition at line 583 of file cffdrivr.c.