Fix r14368 (First pass at GPU veto) for non-GPU builds
https://codereview.chromium.org/255733002/
git-svn-id: http://skia.googlecode.com/svn/trunk@14369 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/tests/PictureTest.cpp b/tests/PictureTest.cpp
index 5e15234..8c5ae62 100644
--- a/tests/PictureTest.cpp
+++ b/tests/PictureTest.cpp
@@ -695,6 +695,7 @@
}
}
+#if SK_SUPPORT_GPU
static void test_gpu_veto(skiatest::Reporter* reporter) {
SkPictureRecorder recorder;
@@ -764,6 +765,7 @@
// hairline stroked AA concave paths are fine for GPU rendering
REPORTER_ASSERT(reporter, picture->suitableForGpuRasterization(NULL));
}
+#endif
static void set_canvas_to_save_count_4(SkCanvas* canvas) {
canvas->restoreToCount(1);
@@ -1268,7 +1270,9 @@
#endif
test_unbalanced_save_restores(reporter);
test_peephole();
+#if SK_SUPPORT_GPU
test_gpu_veto(reporter);
+#endif
test_gatherpixelrefs(reporter);
test_gatherpixelrefsandrects(reporter);
test_bitmap_with_encoded_data(reporter);