Lines Matching defs:bbox
485 RECT* bbox)
544 HRM(glyphRunAnalysis->GetAlphaTextureBounds(textureType, bbox),
716 auto glyphCheckAndSetBounds = [](SkGlyph* glyph, const RECT& bbox) {
717 if (bbox.left >= bbox.right || bbox.top >= bbox.bottom) {
724 SkIRect::MakeLTRB(bbox.left, bbox.top, bbox.right, bbox.bottom))) {
728 glyph->fWidth = SkToU16(bbox.right - bbox.left);
729 glyph->fHeight = SkToU16(bbox.bottom - bbox.top);
730 glyph->fLeft = SkToS16(bbox.left);
731 glyph->fTop = SkToS16(bbox.top);
757 RECT bbox;
758 HRVM(this->getBoundingBox(glyph, fRenderingMode, fTextureType, &bbox),
761 if (glyphCheckAndSetBounds(glyph, bbox)) {
774 &bbox),
776 if (glyphCheckAndSetBounds(glyph, bbox)) {
1036 RECT bbox;
1037 bbox.left = glyph.left();
1038 bbox.top = glyph.top();
1039 bbox.right = glyph.left() + glyph.width();
1040 bbox.bottom = glyph.top() + glyph.height();
1044 &bbox,