Searched defs:currentClip (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/libs/hwui/
H A DOpenGLRenderer.cpp1418 const Rect& currentClip = *(mSnapshot->clipRect); local
1430 if(!clippedBounds.intersect(currentClip)) {
1436 if (!currentClip.contains(state.mBounds)) {
1439 if (currentClip.left > state.mBounds.left) flags |= kClipSide_Left;
1440 if (currentClip.top > state.mBounds.top) flags |= kClipSide_Top;
1441 if (currentClip.right < state.mBounds.right) flags |= kClipSide_Right;
1442 if (currentClip.bottom < state.mBounds.bottom) flags |= kClipSide_Bottom;
1449 state.mBounds.set(currentClip);
1455 state.mClip.set(currentClip);

Completed in 58 milliseconds