Index: tests/ClipCacheTest.cpp |
diff --git a/tests/ClipCacheTest.cpp b/tests/ClipCacheTest.cpp |
index 0e5fe1e4ac8a0852fdb8fc764cff4e9533864790..3d3fa95c0390ed82f53de9ec99b6272eb126f0a1 100644 |
--- a/tests/ClipCacheTest.cpp |
+++ b/tests/ClipCacheTest.cpp |
@@ -84,17 +84,17 @@ static void test_clip_bounds(skiatest::Reporter* reporter, GrContext* context) { |
REPORTER_ASSERT(reporter, screen == devStackBounds); |
REPORTER_ASSERT(reporter, isIntersectionOfRects); |
- // wrap the SkClipStack in a GrClipData |
+ // wrap the SkClipStack in a GrClip |
GrClip clipData; |
clipData.setClipStack(&stack); |
- SkIRect devGrClipDataBound; |
+ SkIRect devGrClipBound; |
clipData.getConservativeBounds(texture, |
- &devGrClipDataBound, |
+ &devGrClipBound, |
&isIntersectionOfRects); |
- // make sure that GrClipData is behaving itself |
- REPORTER_ASSERT(reporter, intScreen == devGrClipDataBound); |
+ // make sure that GrClip is behaving itself |
+ REPORTER_ASSERT(reporter, intScreen == devGrClipBound); |
REPORTER_ASSERT(reporter, isIntersectionOfRects); |
} |