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