Home | History | Annotate | Download | only in gpu

Lines Matching refs:fRight

16     int16_t fLeft, fTop, fRight, fBottom;
36 int width() const { return fRight - fLeft; }
39 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; }
46 fRight = right;
53 fRight = SkToS16(r.fRight);
62 SkASSERT(!a.isFinite() || (a.fLeft <= a.fRight && a.fTop <= a.fBottom));
63 SkASSERT(!b.isFinite() || (b.fLeft <= b.fRight && b.fTop <= b.fBottom));
64 return a.fRight > b.fLeft && a.fBottom > b.fTop && b.fRight > a.fLeft && b.fBottom > a.fTop;
71 SkASSERT(!a.isFinite() || (a.fLeft <= a.fRight && a.fTop <= a.fBottom));
72 SkASSERT(!b.isFinite() || (b.fLeft <= b.fRight && b.fTop <= b.fBottom));
73 return a.fRight >= b.fLeft && a.fBottom >= b.fTop && b.fRight >= a.fLeft && b.fBottom >= a.fTop;