HomeSort by relevance Sort by last modified time
    Searched refs:transformedBounds (Results 1 - 2 of 2) sorted by null

  /frameworks/base/libs/hwui/
ClipArea.h 46 Rect transformedBounds() const {
47 Rect transformedBounds(transformAndCalculateBounds(mBounds, mTransform));
48 return transformedBounds;
ClipArea.cpp 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());
    [all...]

Completed in 586 milliseconds