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

/frameworks/base/libs/hwui/
H A DDeferredDisplayList.cpp159 float boundsDelta) {
164 if (boundsDelta > 0 && currentClipExists) return false;
167 if (boundsDelta < 0 && newClipExists) return false;
210 float boundsDelta = mBounds.left - opBounds.left; local
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
158 checkSide(const int currentFlags, const int newFlags, const int side, float boundsDelta) argument
[all...]
H A DLayerBuilder.cpp89 float boundsDelta) {
94 if (boundsDelta > 0 && currentClipExists) return false;
97 if (boundsDelta < 0 && newClipExists) return false;
157 float boundsDelta = mBounds.left - opBounds.left; local
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
88 checkSide(const int currentFlags, const int newFlags, const int side, float boundsDelta) argument
[all...]

Completed in 141 milliseconds