Index: tests/PictureTest.cpp |
=================================================================== |
--- tests/PictureTest.cpp (revision 14368) |
+++ tests/PictureTest.cpp (working copy) |
@@ -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); |