Make it explicit that some validate methods are debug only
https://codereview.chromium.org/25716003/
git-svn-id: http://skia.googlecode.com/svn/trunk@11575 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/tests/SurfaceTest.cpp b/tests/SurfaceTest.cpp
index 80822a1..96a5560 100644
--- a/tests/SurfaceTest.cpp
+++ b/tests/SurfaceTest.cpp
@@ -209,22 +209,22 @@
SkSurface* surface = createSurface(surfaceType, context);
SkAutoTUnref<SkSurface> aur_surface(surface);
surface->notifyContentWillChange(mode);
- surface->validate();
+ SkDEBUGCODE(surface->validate();)
}
{
SkSurface* surface = createSurface(surfaceType, context);
SkAutoTUnref<SkSurface> aur_surface(surface);
SkImage* image1 = surface->newImageSnapshot();
SkAutoTUnref<SkImage> aur_image1(image1);
- image1->validate();
- surface->validate();
+ SkDEBUGCODE(image1->validate();)
+ SkDEBUGCODE(surface->validate();)
surface->notifyContentWillChange(mode);
- image1->validate();
- surface->validate();
+ SkDEBUGCODE(image1->validate();)
+ SkDEBUGCODE(surface->validate();)
SkImage* image2 = surface->newImageSnapshot();
SkAutoTUnref<SkImage> aur_image2(image2);
- image2->validate();
- surface->validate();
+ SkDEBUGCODE(image2->validate();)
+ SkDEBUGCODE(surface->validate();)
REPORTER_ASSERT(reporter, image1 != image2);
}