Searched refs:glyph_id (Results 1 - 2 of 2) sorted by relevance
/inkscape/src/libnrtype/ |
H A D | font-instance.h | 55 void LoadGlyph(int glyph_id); // the main backend-dependent function 62 Geom::PathVector* PathVector(int glyph_id); 65 double Advance(int glyph_id, bool vertical); 79 Geom::OptRect BBox(int glyph_id);
|
H A D | FontInstance.cpp | 353 void font_instance::LoadGlyph(int glyph_id) argument 365 if ( id_to_no.find(glyph_id) == id_to_no.end() ) { 391 DWORD bufferSize=GetGlyphOutline (parent->hScreenDC, glyph_id, GGO_GLYPH_INDEX | GGO_NATIVE | GGO_UNHINTED, &metrics, 0, NULL, &identity); 404 if ( GetGlyphOutline (parent->hScreenDC, glyph_id, GGO_GLYPH_INDEX | GGO_NATIVE | GGO_UNHINTED, &metrics, bufferSize, buffer, &identity) <= 0 ) { 465 if (FT_Load_Glyph (theFace, glyph_id, FT_LOAD_NO_SCALE | FT_LOAD_NO_HINTING | FT_LOAD_NO_BITMAP)) { 519 id_to_no[glyph_id]=nbGlyph; 610 Geom::OptRect font_instance::BBox(int glyph_id) argument 613 if ( id_to_no.find(glyph_id) == id_to_no.end() ) { 614 LoadGlyph(glyph_id); 615 if ( id_to_no.find(glyph_id) 632 PathVector(int glyph_id) argument 649 Advance(int glyph_id,bool vertical) argument [all...] |
Completed in 275 milliseconds