Searched defs:GlyphData (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/
H A DGlyphPageTreeNode.h53 struct GlyphData { struct in namespace:WebCore
54 GlyphData(Glyph g = 0, const SimpleFontData* f = 0) function in struct:WebCore::GlyphData
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)
142 // Separate arrays, rather than array of GlyphData, to save space.

Completed in 142 milliseconds