Home | History | Annotate | Download | only in graphics

Lines Matching defs:m_advances

74         m_advances.clear();
78 GlyphBufferAdvance* advances(int from) { return m_advances.data() + from; }
80 const GlyphBufferAdvance* advances(int from) const { return m_advances.data() + from; }
91 return m_advances[index].width();
101 m_advances.append(advance);
103 m_advances.append(FloatSize(width, 0));
111 m_advances.append(advance);
123 GlyphBufferAdvance& lastAdvance = m_advances.last();
138 GlyphBufferAdvance s = m_advances[index1];
139 m_advances[index1] = m_advances[index2];
140 m_advances[index2] = s;
145 Vector<GlyphBufferAdvance, 2048> m_advances;