Home | History | Annotate | Download | only in hwui

Lines Matching defs:lowerBound

1540 void SpotShadow::updateBound(const Vector2 inVector, Vector2& lowerBound,
1542 if (inVector.x < lowerBound.x) {
1543 lowerBound.x = inVector.x;
1546 if (inVector.y < lowerBound.y) {
1547 lowerBound.y = inVector.y;
1612 Vector2 lowerBound = {FLT_MAX, FLT_MAX};
1615 updateBound(poly1[i], lowerBound, upperBound);
1618 updateBound(poly2[i], lowerBound, upperBound);
1628 testPoint.x = lowerBound.x + randomX * (upperBound.x - lowerBound.x);
1629 testPoint.y = lowerBound.y + randomY * (upperBound.y - lowerBound.y);