Lines Matching refs:antiRect
115 const SkAntiRect& antiRect = deltas->getAntiRect(); in blitCoverageDeltas() local
122 if (y >= antiRect.fY && y < antiRect.fY + antiRect.fHeight) { in blitCoverageDeltas()
124 int leftOverClip = clip.fLeft - antiRect.fX; in blitCoverageDeltas()
125 int rightOverClip = antiRect.fX + antiRect.fWidth - clip.fRight; in blitCoverageDeltas()
126 int topOverClip = clip.fTop - antiRect.fY; in blitCoverageDeltas()
127 int botOverClip = antiRect.fY + antiRect.fHeight - clip.fBottom; in blitCoverageDeltas()
129 int rectX = antiRect.fX; in blitCoverageDeltas()
130 int rectY = antiRect.fY; in blitCoverageDeltas()
131 int width = antiRect.fWidth; in blitCoverageDeltas()
132 int height = antiRect.fHeight; in blitCoverageDeltas()
133 SkAlpha leftAlpha = antiRect.fLeftAlpha; in blitCoverageDeltas()
134 SkAlpha rightAlpha = antiRect.fRightAlpha; in blitCoverageDeltas()
156 y += antiRect.fHeight - 1; // -1 because ++y in the for loop in blitCoverageDeltas()