Home | History | Annotate | Download | only in graphics

Lines Matching refs:glyphData

53 struct GlyphData {
54 GlyphData(Glyph g = 0, const SimpleFontData* f = 0)
63 // A GlyphPage contains a fixed-size set of GlyphData mappings for a contiguous
81 GlyphData glyphDataForCharacter(UChar32 c) const
84 return GlyphData(m_glyphs[index], m_glyphFontData[index]);
87 GlyphData glyphDataForIndex(unsigned index) const
90 return GlyphData(m_glyphs[index], m_glyphFontData[index]);
114 void setGlyphDataForIndex(unsigned index, const GlyphData& glyphData)
116 setGlyphDataForIndex(index, glyphData.glyph, glyphData.fontData);
142 // Separate arrays, rather than array of GlyphData, to save space.