Lines Matching refs:mBounds
34 mBounds = op->computedState.clippedBounds; in BatchBase()
39 if (!rect.intersects(mBounds)) return false; in intersects()
56 this, mBatchId, mMerging, (int) mOps.size(), RECT_ARGS(mBounds)); in dump()
60 Rect mBounds; member in android::uirenderer::BatchBase
72 mBounds.unionWith(op->computedState.clippedBounds); in batchOp()
157 float boundsDelta = mBounds.left - opBounds.left; in canMergeWith()
159 boundsDelta = mBounds.top - opBounds.top; in canMergeWith()
163 boundsDelta = opBounds.right - mBounds.right; in canMergeWith()
165 boundsDelta = opBounds.bottom - mBounds.bottom; in canMergeWith()
184 mBounds.unionWith(op->computedState.clippedBounds); in mergeOp()
194 const Rect& getClipRect() const { return mBounds; } in getClipRect()