Home | History | Annotate | Download | only in gtk

Lines Matching defs:glyphs

165         PangoGlyphString* glyphs = pango_glyph_string_new();
166 pango_shape(buffer, length, &item->analysis, glyphs);
170 if (glyphs->num_glyphs == 1)
171 result = glyphs->glyphs[0].glyph;
173 g_warning("didn't get 1 glyph but %d", glyphs->num_glyphs);
175 pango_glyph_string_free(glyphs);
201 cairo_glyph_t* glyphs = NULL;
202 glyphs = static_cast<cairo_glyph_t*>(malloc(sizeof(cairo_glyph_t) * numGlyphs));
207 glyphs[i].index = pango_font_get_glyph(pangoFont, pangoContext, glyphBuffer.glyphAt(from + i));
208 glyphs[i].x = offset;
209 glyphs[i].y = point.y();
216 cairo_show_glyphs(cr, glyphs, numGlyphs);
228 // convert glyphs to wxString
229 GlyphBufferGlyph* glyphs = const_cast<GlyphBufferGlyph*>(glyphBuffer.glyphs(from));
233 text = text.Append((wxChar)glyphs[i]);