Home | History | Annotate | Download | only in skia

Lines Matching defs:norm

269     FloatRect norm = rect;
270 if (norm.width() < 0) {
271 norm.setX(norm.x() + norm.width());
272 norm.setWidth(-norm.width());
274 if (norm.height() < 0) {
275 norm.setY(norm.y() + norm.height());
276 norm.setHeight(-norm.height());
278 return norm;