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

/frameworks/base/libs/hwui/
H A DDeferredDisplayList.cpp160 static inline bool checkSide(const int currentFlags, const int newFlags, const int side, argument
162 bool currentClipExists = currentFlags & side;
207 const int currentFlags = mClipSideFlags; local
209 if (currentFlags != kClipSide_None || newFlags != kClipSide_None) {
212 if (!checkSide(currentFlags, newFlags, kClipSide_Left, boundsDelta)) return false;
214 if (!checkSide(currentFlags, newFlags, kClipSide_Top, boundsDelta)) return false;
218 if (!checkSide(currentFlags, newFlags, kClipSide_Right, boundsDelta)) return false;
220 if (!checkSide(currentFlags, newFlags, kClipSide_Bottom, boundsDelta)) return false;

Completed in 1750 milliseconds