Searched refs:boundsDelta (Results 1 – 1 of 1) sorted by relevance
89 float boundsDelta) { in checkSide() argument94 if (boundsDelta > 0 && currentClipExists) return false; in checkSide()97 if (boundsDelta < 0 && newClipExists) return false; in checkSide()157 float boundsDelta = mBounds.left - opBounds.left; in canMergeWith() local158 … if (!checkSide(currentFlags, newFlags, OpClipSideFlags::Left, boundsDelta)) return false; in canMergeWith()159 boundsDelta = mBounds.top - opBounds.top; in canMergeWith()160 if (!checkSide(currentFlags, newFlags, OpClipSideFlags::Top, boundsDelta)) return false; in canMergeWith()163 boundsDelta = opBounds.right - mBounds.right; in canMergeWith()164 … if (!checkSide(currentFlags, newFlags, OpClipSideFlags::Right, boundsDelta)) return false; in canMergeWith()165 boundsDelta = opBounds.bottom - mBounds.bottom; in canMergeWith()[all …]