Home | History | Annotate | Download | only in gpu

Lines Matching refs:iRect

1087 // This method outsets 'iRect' by 'outset' all around and then clamps its extents to
1089 // of 'iRect' for all possible outsets/clamps.
1090 static inline void clamped_outset_with_offset(SkIRect* iRect,
1094 iRect->outset(outset, outset);
1096 int leftClampDelta = clamp.fLeft - iRect->fLeft;
1099 iRect->fLeft = clamp.fLeft;
1104 int topClampDelta = clamp.fTop - iRect->fTop;
1107 iRect->fTop = clamp.fTop;
1112 if (iRect->fRight > clamp.fRight) {
1113 iRect->fRight = clamp.fRight;
1115 if (iRect->fBottom > clamp.fBottom) {
1116 iRect->fBottom = clamp.fBottom;