Home | History | Annotate | Download | only in surfaceflinger

Lines Matching refs:exclude

369 static Rect reduce(const Rect& win, const Region& exclude) {
370 if (CC_LIKELY(exclude.isEmpty())) {
373 if (exclude.isRect()) {
374 return win.reduce(exclude.getBounds());
376 return Region(win).subtract(exclude).getBounds();