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

  /frameworks/base/libs/hwui/
LayerBuilder.cpp 89 float boundsDelta) {
94 if (boundsDelta > 0 && currentClipExists) return false;
97 if (boundsDelta < 0 && newClipExists) return false;
157 float boundsDelta = mBounds.left - opBounds.left;
158 if (!checkSide(currentFlags, newFlags, OpClipSideFlags::Left, boundsDelta)) return false;
159 boundsDelta = mBounds.top - opBounds.top;
160 if (!checkSide(currentFlags, newFlags, OpClipSideFlags::Top, boundsDelta)) return false;
163 boundsDelta = opBounds.right - mBounds.right;
164 if (!checkSide(currentFlags, newFlags, OpClipSideFlags::Right, boundsDelta)) return false;
165 boundsDelta = opBounds.bottom - mBounds.bottom
    [all...]
DeferredDisplayList.cpp 159 float boundsDelta) {
164 if (boundsDelta > 0 && currentClipExists) return false;
167 if (boundsDelta < 0 && newClipExists) return false;
210 float boundsDelta = mBounds.left - opBounds.left;
211 if (!checkSide(currentFlags, newFlags, kClipSide_Left, boundsDelta)) return false;
212 boundsDelta = mBounds.top - opBounds.top;
213 if (!checkSide(currentFlags, newFlags, kClipSide_Top, boundsDelta)) return false;
216 boundsDelta = opBounds.right - mBounds.right;
217 if (!checkSide(currentFlags, newFlags, kClipSide_Right, boundsDelta)) return false;
218 boundsDelta = opBounds.bottom - mBounds.bottom
    [all...]

Completed in 1348 milliseconds