Fix r14368 (First pass at GPU veto) for non-GPU builds
authorrobertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Fri, 25 Apr 2014 00:02:12 +0000 (00:02 +0000)
committerrobertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Fri, 25 Apr 2014 00:02:12 +0000 (00:02 +0000)
https://codereview.chromium.org/255733002/

git-svn-id: http://skia.googlecode.com/svn/trunk@14369 2bbb7eff-a529-9590-31e7-b0007b416f81

tests/PictureTest.cpp

index 5e152341ccee0812beaf9d0f6f56fd5f8ee7d581..8c5ae6285736a79a88ab974411037373e2730e9d 100644 (file)
@@ -695,6 +695,7 @@ static void rand_op(SkCanvas* canvas, SkRandom& rand) {
     }
 }
 
+#if SK_SUPPORT_GPU
 static void test_gpu_veto(skiatest::Reporter* reporter) {
 
     SkPictureRecorder recorder;
@@ -764,6 +765,7 @@ static void test_gpu_veto(skiatest::Reporter* reporter) {
     // 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 @@ DEF_TEST(Picture, reporter) {
 #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);