Home | History | Annotate | Download | only in hwui

Lines Matching refs:transformedBounds

27 static void handlePoint(Rect& transformedBounds, const Matrix4& transform, float x, float y) {
30 transformedBounds.expandToCover(v.x, v.y);
36 Rect transformedBounds = { kMaxFloat, kMaxFloat, kMinFloat, kMinFloat };
37 handlePoint(transformedBounds, transform, r.left, r.top);
38 handlePoint(transformedBounds, transform, r.right, r.top);
39 handlePoint(transformedBounds, transform, r.left, r.bottom);
40 handlePoint(transformedBounds, transform, r.right, r.bottom);
41 return transformedBounds;
143 bounds = tr.transformedBounds();
145 bounds.doIntersect(tr.transformedBounds());