blob: 2c27971f09d4a87713103b949c8aa6da9958f58d [file] [log] [blame]
junov@chromium.org1f9767c2012-02-07 16:27:57 +00001
2/*
3 * Copyright 2012 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8#include "Test.h"
9#include "SkBitmap.h"
10#include "SkDeferredCanvas.h"
junov@chromium.org88e29142012-08-07 16:48:22 +000011#include "SkDevice.h"
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +000012#include "SkShader.h"
junov@chromium.org1f9767c2012-02-07 16:27:57 +000013
junov@chromium.org1f9767c2012-02-07 16:27:57 +000014static const int gWidth = 2;
15static const int gHeight = 2;
16
17static void create(SkBitmap* bm, SkBitmap::Config config, SkColor color) {
18 bm->setConfig(config, gWidth, gHeight);
19 bm->allocPixels();
20 bm->eraseColor(color);
21}
22
23static void TestDeferredCanvasBitmapAccess(skiatest::Reporter* reporter) {
24 SkBitmap store;
25
26 create(&store, SkBitmap::kARGB_8888_Config, 0xFFFFFFFF);
27 SkDevice device(store);
28 SkDeferredCanvas canvas(&device);
29
30 canvas.clear(0x00000000);
31
32 SkAutoLockPixels alp(store);
33 REPORTER_ASSERT(reporter, store.getColor(0,0) == 0xFFFFFFFF); //verify that clear was deferred
34 SkBitmap accessed = canvas.getDevice()->accessBitmap(false);
35 REPORTER_ASSERT(reporter, store.getColor(0,0) == 0x00000000); //verify that clear was executed
36 REPORTER_ASSERT(reporter, accessed.pixelRef() == store.pixelRef());
37}
38
39static void TestDeferredCanvasFlush(skiatest::Reporter* reporter) {
40 SkBitmap store;
41
42 create(&store, SkBitmap::kARGB_8888_Config, 0xFFFFFFFF);
43 SkDevice device(store);
44 SkDeferredCanvas canvas(&device);
45
46 canvas.clear(0x00000000);
47
48 SkAutoLockPixels alp(store);
49 REPORTER_ASSERT(reporter, store.getColor(0,0) == 0xFFFFFFFF); //verify that clear was deferred
50 canvas.flush();
51 REPORTER_ASSERT(reporter, store.getColor(0,0) == 0x00000000); //verify that clear was executed
52}
53
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +000054static void TestDeferredCanvasFreshFrame(skiatest::Reporter* reporter) {
55 SkBitmap store;
56 SkRect fullRect;
57 fullRect.setXYWH(SkIntToScalar(0), SkIntToScalar(0), SkIntToScalar(gWidth),
58 SkIntToScalar(gHeight));
59 SkRect partialRect;
junov@chromium.orgb1e218e2012-02-13 22:27:58 +000060 partialRect.setXYWH(SkIntToScalar(0), SkIntToScalar(0),
61 SkIntToScalar(1), SkIntToScalar(1));
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +000062 create(&store, SkBitmap::kARGB_8888_Config, 0xFFFFFFFF);
63 SkDevice device(store);
64 SkDeferredCanvas canvas(&device);
65
66 // verify that frame is intially fresh
junov@chromium.org88e29142012-08-07 16:48:22 +000067 REPORTER_ASSERT(reporter, canvas.isFreshFrame());
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +000068 // no clearing op since last call to isFreshFrame -> not fresh
junov@chromium.org88e29142012-08-07 16:48:22 +000069 REPORTER_ASSERT(reporter, !canvas.isFreshFrame());
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +000070
71 // Verify that clear triggers a fresh frame
72 canvas.clear(0x00000000);
junov@chromium.org88e29142012-08-07 16:48:22 +000073 REPORTER_ASSERT(reporter, canvas.isFreshFrame());
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +000074
75 // Verify that clear with saved state triggers a fresh frame
76 canvas.save(SkCanvas::kMatrixClip_SaveFlag);
77 canvas.clear(0x00000000);
78 canvas.restore();
junov@chromium.org88e29142012-08-07 16:48:22 +000079 REPORTER_ASSERT(reporter, canvas.isFreshFrame());
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +000080
81 // Verify that clear within a layer does NOT trigger a fresh frame
82 canvas.saveLayer(NULL, NULL, SkCanvas::kARGB_ClipLayer_SaveFlag);
83 canvas.clear(0x00000000);
84 canvas.restore();
junov@chromium.org88e29142012-08-07 16:48:22 +000085 REPORTER_ASSERT(reporter, !canvas.isFreshFrame());
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +000086
87 // Verify that a clear with clipping triggers a fresh frame
88 // (clear is not affected by clipping)
89 canvas.save(SkCanvas::kMatrixClip_SaveFlag);
90 canvas.clipRect(partialRect, SkRegion::kIntersect_Op, false);
91 canvas.clear(0x00000000);
92 canvas.restore();
rmistry@google.comd6176b02012-08-23 18:14:13 +000093 REPORTER_ASSERT(reporter, canvas.isFreshFrame());
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +000094
95 // Verify that full frame rects with different forms of opaque paint
96 // trigger frames to be marked as fresh
97 {
98 SkPaint paint;
99 paint.setStyle( SkPaint::kFill_Style );
100 paint.setAlpha( 255 );
101 canvas.drawRect(fullRect, paint);
junov@chromium.org88e29142012-08-07 16:48:22 +0000102 REPORTER_ASSERT(reporter, canvas.isFreshFrame());
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000103 }
skia.committer@gmail.com5b6f9162012-10-12 02:01:15 +0000104 {
junov@chromium.org8cef67a2012-10-11 20:19:15 +0000105 SkPaint paint;
106 paint.setStyle( SkPaint::kFill_Style );
107 paint.setAlpha( 255 );
108 paint.setXfermodeMode(SkXfermode::kSrcIn_Mode);
109 canvas.drawRect(fullRect, paint);
110 REPORTER_ASSERT(reporter, !canvas.isFreshFrame());
111 }
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000112 {
113 SkPaint paint;
114 paint.setStyle( SkPaint::kFill_Style );
115 SkBitmap bmp;
116 create(&bmp, SkBitmap::kARGB_8888_Config, 0xFFFFFFFF);
117 bmp.setIsOpaque(true);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000118 SkShader* shader = SkShader::CreateBitmapShader(bmp,
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000119 SkShader::kClamp_TileMode, SkShader::kClamp_TileMode);
120 paint.setShader(shader)->unref();
121 canvas.drawRect(fullRect, paint);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000122 REPORTER_ASSERT(reporter, canvas.isFreshFrame());
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000123 }
124
125 // Verify that full frame rects with different forms of non-opaque paint
126 // do not trigger frames to be marked as fresh
127 {
128 SkPaint paint;
129 paint.setStyle( SkPaint::kFill_Style );
130 paint.setAlpha( 254 );
131 canvas.drawRect(fullRect, paint);
junov@chromium.org88e29142012-08-07 16:48:22 +0000132 REPORTER_ASSERT(reporter, !canvas.isFreshFrame());
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000133 }
134 {
135 SkPaint paint;
136 paint.setStyle( SkPaint::kFill_Style );
137 SkBitmap bmp;
138 create(&bmp, SkBitmap::kARGB_8888_Config, 0xFFFFFFFF);
139 bmp.setIsOpaque(false);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000140 SkShader* shader = SkShader::CreateBitmapShader(bmp,
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000141 SkShader::kClamp_TileMode, SkShader::kClamp_TileMode);
142 paint.setShader(shader)->unref();
143 canvas.drawRect(fullRect, paint);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000144 REPORTER_ASSERT(reporter, !canvas.isFreshFrame());
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000145 }
146
147 // Verify that incomplete coverage does not trigger a fresh frame
148 {
149 SkPaint paint;
150 paint.setStyle(SkPaint::kFill_Style);
151 paint.setAlpha(255);
152 canvas.drawRect(partialRect, paint);
junov@chromium.org88e29142012-08-07 16:48:22 +0000153 REPORTER_ASSERT(reporter, !canvas.isFreshFrame());
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000154 }
155
156 // Verify that incomplete coverage due to clipping does not trigger a fresh
157 // frame
158 {
159 canvas.save(SkCanvas::kMatrixClip_SaveFlag);
160 canvas.clipRect(partialRect, SkRegion::kIntersect_Op, false);
161 SkPaint paint;
162 paint.setStyle(SkPaint::kFill_Style);
163 paint.setAlpha(255);
164 canvas.drawRect(fullRect, paint);
junov@chromium.org88e29142012-08-07 16:48:22 +0000165 REPORTER_ASSERT(reporter, !canvas.isFreshFrame());
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000166 }
167
168 // Verify that stroked rect does not trigger a fresh frame
169 {
170 SkPaint paint;
171 paint.setStyle( SkPaint::kStroke_Style );
172 paint.setAlpha( 255 );
173 canvas.drawRect(fullRect, paint);
junov@chromium.org88e29142012-08-07 16:48:22 +0000174 REPORTER_ASSERT(reporter, !canvas.isFreshFrame());
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000175 }
rmistry@google.comd6176b02012-08-23 18:14:13 +0000176
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000177 // Verify kSrcMode triggers a fresh frame even with transparent color
178 {
179 SkPaint paint;
180 paint.setStyle( SkPaint::kFill_Style );
181 paint.setAlpha( 100 );
182 paint.setXfermodeMode(SkXfermode::kSrc_Mode);
183 canvas.drawRect(fullRect, paint);
junov@chromium.org88e29142012-08-07 16:48:22 +0000184 REPORTER_ASSERT(reporter, !canvas.isFreshFrame());
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000185 }
186}
187
junov@chromium.orgbfeddae2012-07-23 13:35:14 +0000188class MockDevice : public SkDevice {
189public:
190 MockDevice(const SkBitmap& bm) : SkDevice(bm) {
191 fDrawBitmapCallCount = 0;
192 }
193 virtual void drawBitmap(const SkDraw&, const SkBitmap&,
194 const SkIRect*,
195 const SkMatrix&, const SkPaint&) {
196 fDrawBitmapCallCount++;
197 }
198
199 int fDrawBitmapCallCount;
200};
201
202// Verifies that the deferred canvas triggers a flush when its memory
203// limit is exceeded
204static void TestDeferredCanvasMemoryLimit(skiatest::Reporter* reporter) {
205 SkBitmap store;
206 store.setConfig(SkBitmap::kARGB_8888_Config, 100, 100);
207 store.allocPixels();
208 MockDevice mockDevice(store);
209 SkDeferredCanvas canvas(&mockDevice);
210 canvas.setMaxRecordingStorage(160000);
211
212 SkBitmap sourceImage;
213 // 100 by 100 image, takes 40,000 bytes in memory
214 sourceImage.setConfig(SkBitmap::kARGB_8888_Config, 100, 100);
215 sourceImage.allocPixels();
216
junov@chromium.orgb10a6bd2012-07-25 17:27:13 +0000217 for (int i = 0; i < 5; i++) {
junov@chromium.orgbfeddae2012-07-23 13:35:14 +0000218 sourceImage.notifyPixelsChanged(); // to force re-serialization
219 canvas.drawBitmap(sourceImage, 0, 0, NULL);
220 }
221
scroggo@google.com15011ee2012-07-26 20:03:32 +0000222 REPORTER_ASSERT(reporter, mockDevice.fDrawBitmapCallCount == 4);
junov@chromium.orgbfeddae2012-07-23 13:35:14 +0000223}
224
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000225class NotificationCounter : public SkDeferredCanvas::NotificationClient {
226public:
227 NotificationCounter() {
junov@google.com52a00ca2012-10-01 15:27:14 +0000228 fPrepareForDrawCount = fStorageAllocatedChangedCount =
229 fFlushedDrawCommandsCount = fSkippedPendingDrawCommandsCount = 0;
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000230 }
231
232 virtual void prepareForDraw() SK_OVERRIDE {
233 fPrepareForDrawCount++;
234 }
235 virtual void storageAllocatedForRecordingChanged(size_t size) SK_OVERRIDE {
236 fStorageAllocatedChangedCount++;
237 }
238 virtual void flushedDrawCommands() SK_OVERRIDE {
rmistry@google.comd6176b02012-08-23 18:14:13 +0000239 fFlushedDrawCommandsCount++;
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000240 }
junov@google.com52a00ca2012-10-01 15:27:14 +0000241 virtual void skippedPendingDrawCommands() SK_OVERRIDE {
242 fSkippedPendingDrawCommandsCount++;
243 }
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000244
245 int fPrepareForDrawCount;
246 int fStorageAllocatedChangedCount;
247 int fFlushedDrawCommandsCount;
junov@google.com52a00ca2012-10-01 15:27:14 +0000248 int fSkippedPendingDrawCommandsCount;
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000249};
250
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000251static void TestDeferredCanvasBitmapCaching(skiatest::Reporter* reporter) {
252 SkBitmap store;
253 store.setConfig(SkBitmap::kARGB_8888_Config, 100, 100);
254 store.allocPixels();
255 SkDevice device(store);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000256 NotificationCounter notificationCounter;
junov@chromium.orgd433c4e2012-08-17 14:50:16 +0000257 SkDeferredCanvas canvas(&device);
258 canvas.setNotificationClient(&notificationCounter);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000259
260 const int imageCount = 2;
261 SkBitmap sourceImages[imageCount];
262 for (int i = 0; i < imageCount; i++)
263 {
264 sourceImages[i].setConfig(SkBitmap::kARGB_8888_Config, 100, 100);
265 sourceImages[i].allocPixels();
266 }
267
268 size_t bitmapSize = sourceImages[0].getSize();
269
270 canvas.drawBitmap(sourceImages[0], 0, 0, NULL);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000271 REPORTER_ASSERT(reporter, 1 == notificationCounter.fStorageAllocatedChangedCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000272 // stored bitmap + drawBitmap command
273 REPORTER_ASSERT(reporter, canvas.storageAllocatedForRecording() > bitmapSize);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000274
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000275 // verify that nothing can be freed at this point
bsalomon@google.com100abf42012-09-05 17:40:04 +0000276 REPORTER_ASSERT(reporter, 0 == canvas.freeMemoryIfPossible(~0U));
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000277
278 // verify that flush leaves image in cache
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000279 REPORTER_ASSERT(reporter, 0 == notificationCounter.fFlushedDrawCommandsCount);
280 REPORTER_ASSERT(reporter, 0 == notificationCounter.fPrepareForDrawCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000281 canvas.flush();
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000282 REPORTER_ASSERT(reporter, 1 == notificationCounter.fFlushedDrawCommandsCount);
283 REPORTER_ASSERT(reporter, 1 == notificationCounter.fPrepareForDrawCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000284 REPORTER_ASSERT(reporter, canvas.storageAllocatedForRecording() >= bitmapSize);
285
286 // verify that after a flush, cached image can be freed
bsalomon@google.com100abf42012-09-05 17:40:04 +0000287 REPORTER_ASSERT(reporter, canvas.freeMemoryIfPossible(~0U) >= bitmapSize);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000288
289 // Verify that caching works for avoiding multiple copies of the same bitmap
290 canvas.drawBitmap(sourceImages[0], 0, 0, NULL);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000291 REPORTER_ASSERT(reporter, 2 == notificationCounter.fStorageAllocatedChangedCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000292 canvas.drawBitmap(sourceImages[0], 0, 0, NULL);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000293 REPORTER_ASSERT(reporter, 2 == notificationCounter.fStorageAllocatedChangedCount);
294 REPORTER_ASSERT(reporter, 1 == notificationCounter.fFlushedDrawCommandsCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000295 REPORTER_ASSERT(reporter, canvas.storageAllocatedForRecording() < 2 * bitmapSize);
296
297 // Verify partial eviction based on bytesToFree
298 canvas.drawBitmap(sourceImages[1], 0, 0, NULL);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000299 REPORTER_ASSERT(reporter, 1 == notificationCounter.fFlushedDrawCommandsCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000300 canvas.flush();
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000301 REPORTER_ASSERT(reporter, 2 == notificationCounter.fFlushedDrawCommandsCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000302 REPORTER_ASSERT(reporter, canvas.storageAllocatedForRecording() > 2 * bitmapSize);
303 size_t bytesFreed = canvas.freeMemoryIfPossible(1);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000304 REPORTER_ASSERT(reporter, 2 == notificationCounter.fFlushedDrawCommandsCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000305 REPORTER_ASSERT(reporter, bytesFreed >= bitmapSize);
306 REPORTER_ASSERT(reporter, bytesFreed < 2*bitmapSize);
307
rmistry@google.comd6176b02012-08-23 18:14:13 +0000308 // Verifiy that partial purge works, image zero is in cache but not reffed by
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000309 // a pending draw, while image 1 is locked-in.
bsalomon@google.com100abf42012-09-05 17:40:04 +0000310 canvas.freeMemoryIfPossible(~0U);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000311 REPORTER_ASSERT(reporter, 2 == notificationCounter.fFlushedDrawCommandsCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000312 canvas.drawBitmap(sourceImages[0], 0, 0, NULL);
313 canvas.flush();
314 canvas.drawBitmap(sourceImages[1], 0, 0, NULL);
bsalomon@google.com100abf42012-09-05 17:40:04 +0000315 bytesFreed = canvas.freeMemoryIfPossible(~0U);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000316 // only one bitmap should have been freed.
317 REPORTER_ASSERT(reporter, bytesFreed >= bitmapSize);
318 REPORTER_ASSERT(reporter, bytesFreed < 2*bitmapSize);
319 // Clear for next test
320 canvas.flush();
bsalomon@google.com100abf42012-09-05 17:40:04 +0000321 canvas.freeMemoryIfPossible(~0U);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000322 REPORTER_ASSERT(reporter, canvas.storageAllocatedForRecording() < bitmapSize);
323
324 // Verify the image cache is sensitive to genID bumps
325 canvas.drawBitmap(sourceImages[1], 0, 0, NULL);
326 sourceImages[1].notifyPixelsChanged();
327 canvas.drawBitmap(sourceImages[1], 0, 0, NULL);
328 REPORTER_ASSERT(reporter, canvas.storageAllocatedForRecording() > 2*bitmapSize);
junov@google.com52a00ca2012-10-01 15:27:14 +0000329
330 // Verify that nothing in this test caused commands to be skipped
331 REPORTER_ASSERT(reporter, 0 == notificationCounter.fSkippedPendingDrawCommandsCount);
332}
333
334static void TestDeferredCanvasSkip(skiatest::Reporter* reporter) {
335 SkBitmap store;
336 store.setConfig(SkBitmap::kARGB_8888_Config, 100, 100);
337 store.allocPixels();
338 SkDevice device(store);
339 NotificationCounter notificationCounter;
340 SkDeferredCanvas canvas(&device);
341 canvas.setNotificationClient(&notificationCounter);
342 canvas.clear(0x0);
343 REPORTER_ASSERT(reporter, 1 == notificationCounter.fSkippedPendingDrawCommandsCount);
344 REPORTER_ASSERT(reporter, 0 == notificationCounter.fFlushedDrawCommandsCount);
345 canvas.flush();
346 REPORTER_ASSERT(reporter, 1 == notificationCounter.fSkippedPendingDrawCommandsCount);
347 REPORTER_ASSERT(reporter, 1 == notificationCounter.fFlushedDrawCommandsCount);
348
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000349}
junov@chromium.orgbfeddae2012-07-23 13:35:14 +0000350
junov@chromium.org1f9767c2012-02-07 16:27:57 +0000351static void TestDeferredCanvas(skiatest::Reporter* reporter) {
352 TestDeferredCanvasBitmapAccess(reporter);
353 TestDeferredCanvasFlush(reporter);
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000354 TestDeferredCanvasFreshFrame(reporter);
junov@chromium.orgbfeddae2012-07-23 13:35:14 +0000355 TestDeferredCanvasMemoryLimit(reporter);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000356 TestDeferredCanvasBitmapCaching(reporter);
junov@google.com52a00ca2012-10-01 15:27:14 +0000357 TestDeferredCanvasSkip(reporter);
junov@chromium.org1f9767c2012-02-07 16:27:57 +0000358}
359
360#include "TestClassDef.h"
361DEFINE_TESTCLASS("DeferredCanvas", TestDeferredCanvasClass, TestDeferredCanvas)