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

/frameworks/base/libs/hwui/
H A DDeferredDisplayList.cpp161 float boundsDelta) {
166 if (boundsDelta > 0 && currentClipExists) return false;
169 if (boundsDelta < 0 && newClipExists) return false;
211 float boundsDelta = mBounds.left - opBounds.left; local
212 if (!checkSide(currentFlags, newFlags, kClipSide_Left, boundsDelta)) return false;
213 boundsDelta = mBounds.top - opBounds.top;
214 if (!checkSide(currentFlags, newFlags, kClipSide_Top, boundsDelta)) return false;
217 boundsDelta = opBounds.right - mBounds.right;
218 if (!checkSide(currentFlags, newFlags, kClipSide_Right, boundsDelta)) return false;
219 boundsDelta
160 checkSide(const int currentFlags, const int newFlags, const int side, float boundsDelta) argument
[all...]

Completed in 330 milliseconds