OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "../src/image/SkImagePriv.h" | 8 #include "../src/image/SkImagePriv.h" |
9 #include "../src/image/SkSurface_Base.h" | 9 #include "../src/image/SkSurface_Base.h" |
10 #include "SkBitmap.h" | 10 #include "SkBitmap.h" |
(...skipping 798 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
809 SkPaint paint; | 809 SkPaint paint; |
810 // After spawning a compatible canvas: | 810 // After spawning a compatible canvas: |
811 // 1) Verify that secondary canvas is usable and does not report to the noti
fication client. | 811 // 1) Verify that secondary canvas is usable and does not report to the noti
fication client. |
812 surface->getCanvas()->drawRect(rect, paint); | 812 surface->getCanvas()->drawRect(rect, paint); |
813 REPORTER_ASSERT(reporter, notificationCounter.fStorageAllocatedChangedCount
== 0); | 813 REPORTER_ASSERT(reporter, notificationCounter.fStorageAllocatedChangedCount
== 0); |
814 // 2) Verify that original canvas is usable and still reports to the notific
ation client. | 814 // 2) Verify that original canvas is usable and still reports to the notific
ation client. |
815 canvas->drawRect(rect, paint); | 815 canvas->drawRect(rect, paint); |
816 REPORTER_ASSERT(reporter, notificationCounter.fStorageAllocatedChangedCount
== 1); | 816 REPORTER_ASSERT(reporter, notificationCounter.fStorageAllocatedChangedCount
== 1); |
817 } | 817 } |
818 | 818 |
819 DEF_GPUTEST(DeferredCanvas, reporter, factory) { | 819 DEF_TEST(DeferredCanvas_CPU, reporter) { |
820 TestDeferredCanvasBitmapAccess(reporter); | 820 TestDeferredCanvasBitmapAccess(reporter); |
821 TestDeferredCanvasFlush(reporter); | 821 TestDeferredCanvasFlush(reporter); |
822 TestDeferredCanvasSilentFlush(reporter); | 822 TestDeferredCanvasSilentFlush(reporter); |
823 TestDeferredCanvasFreshFrame(reporter); | 823 TestDeferredCanvasFreshFrame(reporter); |
824 TestDeferredCanvasMemoryLimit(reporter); | 824 TestDeferredCanvasMemoryLimit(reporter); |
825 TestDeferredCanvasBitmapCaching(reporter); | 825 TestDeferredCanvasBitmapCaching(reporter); |
826 TestDeferredCanvasSkip(reporter); | 826 TestDeferredCanvasSkip(reporter); |
827 TestDeferredCanvasBitmapShaderNoLeak(reporter); | 827 TestDeferredCanvasBitmapShaderNoLeak(reporter); |
828 TestDeferredCanvasBitmapSizeThreshold(reporter); | 828 TestDeferredCanvasBitmapSizeThreshold(reporter); |
829 TestDeferredCanvasCreateCompatibleDevice(reporter); | 829 TestDeferredCanvasCreateCompatibleDevice(reporter); |
830 TestDeferredCanvasWritePixelsToSurface(reporter); | 830 TestDeferredCanvasWritePixelsToSurface(reporter); |
831 TestDeferredCanvasSurface(reporter, NULL); | 831 TestDeferredCanvasSurface(reporter, NULL); |
832 TestDeferredCanvasSetSurface(reporter, NULL); | 832 TestDeferredCanvasSetSurface(reporter, NULL); |
833 if (NULL != factory) { | 833 } |
| 834 |
| 835 DEF_GPUTEST(DeferredCanvas_GPU, reporter, factory) { |
| 836 if (factory != NULL) { |
834 TestDeferredCanvasSurface(reporter, factory); | 837 TestDeferredCanvasSurface(reporter, factory); |
835 TestDeferredCanvasSetSurface(reporter, factory); | 838 TestDeferredCanvasSetSurface(reporter, factory); |
836 } | 839 } |
837 } | 840 } |
OLD | NEW |