Searched refs:boundsDelta (Results 1 – 1 of 1) sorted by relevance
161 float boundsDelta) { in checkSide() argument166 if (boundsDelta > 0 && currentClipExists) return false; in checkSide()169 if (boundsDelta < 0 && newClipExists) return false; in checkSide()211 float boundsDelta = mBounds.left - opBounds.left; in canMergeWith() local212 if (!checkSide(currentFlags, newFlags, kClipSide_Left, boundsDelta)) return false; in canMergeWith()213 boundsDelta = mBounds.top - opBounds.top; in canMergeWith()214 if (!checkSide(currentFlags, newFlags, kClipSide_Top, boundsDelta)) return false; in canMergeWith()217 boundsDelta = opBounds.right - mBounds.right; in canMergeWith()218 if (!checkSide(currentFlags, newFlags, kClipSide_Right, boundsDelta)) return false; in canMergeWith()219 boundsDelta = opBounds.bottom - mBounds.bottom; in canMergeWith()[all …]