Home | History | Annotate | Download | only in pdf

Lines Matching full:bbox

109     auto bbox = sk_make_sp<SkPDFArray>();
110 bbox->reserve(4);
111 bbox->appendScalar(scaleFromFontUnits(glyphBBox.fLeft, emSize));
112 bbox->appendScalar(scaleFromFontUnits(glyphBBox.fBottom, emSize));
113 bbox->appendScalar(scaleFromFontUnits(glyphBBox.fRight, emSize));
114 bbox->appendScalar(scaleFromFontUnits(glyphBBox.fTop, emSize));
115 return bbox;
631 SkIRect bbox = SkIRect::MakeEmpty();
647 bbox.join(glyphBBox);
682 fontBBox->appendInt(bbox.left());
683 fontBBox->appendInt(bbox.bottom());
684 fontBBox->appendInt(bbox.right());
685 fontBBox->appendInt(bbox.top());