Home | History | Annotate | Download | only in core

Lines Matching refs:fBounds

60         switch(child_intersect(entry->fBounds, node->fSplitPoint)) {
88 node->fSplitPoint = SkIPoint::Make(node->fBounds.centerX(),
89 node->fBounds.centerY());
93 node->fChildren[0]->fBounds = SkIRect::MakeLTRB(
94 node->fBounds.fLeft, node->fBounds.fTop,
96 node->fChildren[1]->fBounds = SkIRect::MakeLTRB(
97 node->fSplitPoint.fX, node->fBounds.fTop,
98 node->fBounds.fRight, node->fSplitPoint.fY);
99 node->fChildren[2]->fBounds = SkIRect::MakeLTRB(
100 node->fBounds.fLeft, node->fSplitPoint.fY,
101 node->fSplitPoint.fX, node->fBounds.fBottom);
102 node->fChildren[3]->fBounds = SkIRect::MakeLTRB(
104 node->fBounds.fRight, node->fBounds.fBottom);
117 if (SkIRect::IntersectsNoEmptyCheck(entry->fBounds, query)) {
163 entry->fBounds = bounds;
214 fRoot->fBounds = fRootBounds;