Remove coordchanges from drawstate
BUG=skia:
Review URL: https://codereview.chromium.org/818233002
diff --git a/src/gpu/GrAARectRenderer.h b/src/gpu/GrAARectRenderer.h
index b1780ad..d97a111 100644
--- a/src/gpu/GrAARectRenderer.h
+++ b/src/gpu/GrAARectRenderer.h
@@ -45,15 +45,17 @@
void fillAARect(GrDrawTarget* target,
GrDrawState* ds,
GrColor color,
+ const SkMatrix& localMatrix,
const SkRect& rect,
const SkMatrix& combinedMatrix,
const SkRect& devRect) {
- this->geometryFillAARect(target, ds, color, rect, combinedMatrix, devRect);
+ this->geometryFillAARect(target, ds, color, localMatrix, rect, combinedMatrix, devRect);
}
void strokeAARect(GrDrawTarget*,
GrDrawState*,
GrColor,
+ const SkMatrix& localMatrix,
const SkRect& rect,
const SkMatrix& combinedMatrix,
const SkRect& devRect,
@@ -63,6 +65,7 @@
void fillAANestedRects(GrDrawTarget*,
GrDrawState*,
GrColor,
+ const SkMatrix& localMatrix,
const SkRect rects[2],
const SkMatrix& combinedMatrix);
@@ -72,6 +75,7 @@
void geometryFillAARect(GrDrawTarget*,
GrDrawState*,
GrColor,
+ const SkMatrix& localMatrix,
const SkRect& rect,
const SkMatrix& combinedMatrix,
const SkRect& devRect);
@@ -79,6 +83,7 @@
void geometryStrokeAARect(GrDrawTarget*,
GrDrawState*,
GrColor,
+ const SkMatrix& localMatrix,
const SkRect& devOutside,
const SkRect& devOutsideAssist,
const SkRect& devInside,