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

/frameworks/base/libs/hwui/
H A DDeferredDisplayList.cpp163 static inline bool checkSide(const int currentFlags, const int newFlags, const int side, argument
165 bool currentClipExists = currentFlags & side;
206 const int currentFlags = mClipSideFlags; local
208 if (currentFlags != kClipSide_None || newFlags != kClipSide_None) {
211 if (!checkSide(currentFlags, newFlags, kClipSide_Left, boundsDelta)) return false;
213 if (!checkSide(currentFlags, newFlags, kClipSide_Top, boundsDelta)) return false;
217 if (!checkSide(currentFlags, newFlags, kClipSide_Right, boundsDelta)) return false;
219 if (!checkSide(currentFlags, newFlags, kClipSide_Bottom, boundsDelta)) return false;

Completed in 45 milliseconds