Searched refs:num_glyphs (Results 1 - 5 of 5) sorted by relevance
/inkscape/src/display/ |
H A D | nr-svgfonts.h | 41 cairo_status_t scaled_font_text_to_glyphs (cairo_scaled_font_t *scaled_font, const char *utf8, int utf8_len, cairo_glyph_t **glyphs, int *num_glyphs, cairo_text_cluster_t **clusters, int *num_clusters, cairo_text_cluster_flags_t *flags);
|
H A D | nr-svgfonts.cpp | 56 int *num_glyphs, 62 return instance->scaled_font_text_to_glyphs(scaled_font, utf8, utf8_len, glyphs, num_glyphs, clusters, num_clusters, flags); 153 int *num_glyphs, 244 *num_glyphs = count; 52 font_text_to_glyphs_cb( cairo_scaled_font_t *scaled_font, const char *utf8, int utf8_len, cairo_glyph_t **glyphs, int *num_glyphs, cairo_text_cluster_t **clusters, int *num_clusters, cairo_text_cluster_flags_t *flags) argument 149 scaled_font_text_to_glyphs(cairo_scaled_font_t * , const char *utf8, int , cairo_glyph_t **glyphs, int *num_glyphs, cairo_text_cluster_t ** , int * , cairo_text_cluster_flags_t * ) argument
|
/inkscape/src/extension/internal/ |
H A D | cairo-render-context.cpp | 1610 unsigned int num_glyphs = glyphtext.size(); local 1611 if (num_glyphs > GLYPH_ARRAY_SIZE) { 1612 glyphs = (cairo_glyph_t*)g_try_malloc(sizeof(cairo_glyph_t) * num_glyphs); 1614 g_warning("CairorenderContext::_showGlyphs: can not allocate memory for %d glyphs.", num_glyphs); 1637 cairo_glyph_path(cr, glyphs, num_glyphs - num_invalid_glyphs); 1639 cairo_show_glyphs(cr, glyphs, num_glyphs - num_invalid_glyphs); 1642 if (num_glyphs > GLYPH_ARRAY_SIZE) { 1646 return num_glyphs - num_invalid_glyphs;
|
/inkscape/src/libnrtype/ |
H A D | Layout-TNG-Compute.cpp | 331 while (span->start_glyph_index < (unsigned)span->start.iter_span->glyph_string->num_glyphs 364 while (span->end_glyph_index < (unsigned)span->end.iter_span->glyph_string->num_glyphs 687 while (glyph_index < (unsigned)unbroken_span.glyph_string->num_glyphs 796 for(int next_glyph_index = glyph_index+1; next_glyph_index < unbroken_span.glyph_string->num_glyphs; next_glyph_index++){ 1310 const unsigned nglyphs = new_span.glyph_string->num_glyphs; 1360 const unsigned nglyphs = new_span.glyph_string->num_glyphs; 1389 TRACE((" %d glyphs\n", new_span.glyph_string->num_glyphs));
|
H A D | TextWrapper.cpp | 245 for (int i = 0; i < pRun->glyphs->num_glyphs; i++) { // add glyph sequentially, reading them from the run 267 if ( i < pRun->glyphs->num_glyphs - 1 ) {
|
Completed in 31 milliseconds