Home | History | Annotate | Download | only in hwui

Lines Matching refs:mBounds

1167         if (!state.mBounds.isEmpty()) {
1168 currentMatrix->mapRect(state.mBounds);
1169 Rect clippedBounds(state.mBounds);
1180 if (!currentClip.contains(state.mBounds)) {
1183 if (currentClip.left > state.mBounds.left) flags |= kClipSide_Left;
1184 if (currentClip.top > state.mBounds.top) flags |= kClipSide_Top;
1185 if (currentClip.right < state.mBounds.right) flags |= kClipSide_Right;
1186 if (currentClip.bottom < state.mBounds.bottom) flags |= kClipSide_Bottom;
1188 state.mBounds.set(clippedBounds);
1193 state.mBounds.set(currentClip);