Index: src/gpu/effects/GrConvexPolyEffect.h |
diff --git a/src/gpu/effects/GrConvexPolyEffect.h b/src/gpu/effects/GrConvexPolyEffect.h |
index ead7fe4ff5e872555f8c27e43fd411b00c86bfc8..68cd9ecc991ff6797d6da3793a0b8bb725140dd7 100644 |
--- a/src/gpu/effects/GrConvexPolyEffect.h |
+++ b/src/gpu/effects/GrConvexPolyEffect.h |
@@ -43,7 +43,7 @@ public: |
if (n <= 0 || n > kMaxEdges || kHairlineAA_GrProcessorEdgeType == edgeType) { |
return NULL; |
} |
- return SkNEW_ARGS(GrConvexPolyEffect, (edgeType, n, edges)); |
+ return new GrConvexPolyEffect(edgeType, n, edges); |
} |
/** |