Lines Matching refs:glyph_box
442 pixman_box32_t glyph_box; in pixman_composite_glyphs_no_mask() local
448 glyph_box.x1 = dest_x + glyphs[i].x - glyph->origin_x; in pixman_composite_glyphs_no_mask()
449 glyph_box.y1 = dest_y + glyphs[i].y - glyph->origin_y; in pixman_composite_glyphs_no_mask()
450 glyph_box.x2 = glyph_box.x1 + glyph->image->bits.width; in pixman_composite_glyphs_no_mask()
451 glyph_box.y2 = glyph_box.y1 + glyph->image->bits.height; in pixman_composite_glyphs_no_mask()
459 if (box32_intersect (&composite_box, pbox, &glyph_box)) in pixman_composite_glyphs_no_mask()
536 pixman_box32_t glyph_box; in add_glyphs() local
584 glyph_box.x1 = glyphs[i].x - glyph->origin_x + off_x; in add_glyphs()
585 glyph_box.y1 = glyphs[i].y - glyph->origin_y + off_y; in add_glyphs()
586 glyph_box.x2 = glyph_box.x1 + glyph->image->bits.width; in add_glyphs()
587 glyph_box.y2 = glyph_box.y1 + glyph->image->bits.height; in add_glyphs()
589 if (box32_intersect (&composite_box, &glyph_box, &dest_box)) in add_glyphs()
591 int src_x = composite_box.x1 - glyph_box.x1; in add_glyphs()
592 int src_y = composite_box.y1 - glyph_box.y1; in add_glyphs()