Index: src/gpu/GrTestUtils.cpp |
diff --git a/src/gpu/GrTestUtils.cpp b/src/gpu/GrTestUtils.cpp |
index a456fbb532b4d9e5a85df253b7998231ece19fa3..2212c745db4e9c6d53562990894bb5f2955e2834 100644 |
--- a/src/gpu/GrTestUtils.cpp |
+++ b/src/gpu/GrTestUtils.cpp |
@@ -244,7 +244,7 @@ GrStrokeInfo TestStrokeInfo(SkRandom* random) { |
randomize_stroke_rec(&strokeInfo, random); |
SkPathEffect::DashInfo dashInfo; |
dashInfo.fCount = random->nextRangeU(1, 50) * 2; |
- dashInfo.fIntervals = SkNEW_ARRAY(SkScalar, dashInfo.fCount); |
+ dashInfo.fIntervals = new SkScalar[dashInfo.fCount]; |
SkScalar sum = 0; |
for (int i = 0; i < dashInfo.fCount; i++) { |
dashInfo.fIntervals[i] = random->nextRangeScalar(SkDoubleToScalar(0.01), |
@@ -253,7 +253,7 @@ GrStrokeInfo TestStrokeInfo(SkRandom* random) { |
} |
dashInfo.fPhase = random->nextRangeScalar(0, sum); |
strokeInfo.setDashInfo(dashInfo); |
- SkDELETE_ARRAY(dashInfo.fIntervals); |
+ delete[] dashInfo.fIntervals; |
return strokeInfo; |
} |