blob: f0b4ad2279a4991cb3038997409ccb27da43bb54 [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 }
104 {
105 SkPaint paint;
106 paint.setStyle( SkPaint::kFill_Style );
107 SkBitmap bmp;
108 create(&bmp, SkBitmap::kARGB_8888_Config, 0xFFFFFFFF);
109 bmp.setIsOpaque(true);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000110 SkShader* shader = SkShader::CreateBitmapShader(bmp,
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000111 SkShader::kClamp_TileMode, SkShader::kClamp_TileMode);
112 paint.setShader(shader)->unref();
113 canvas.drawRect(fullRect, paint);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000114 REPORTER_ASSERT(reporter, canvas.isFreshFrame());
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000115 }
116
117 // Verify that full frame rects with different forms of non-opaque paint
118 // do not trigger frames to be marked as fresh
119 {
120 SkPaint paint;
121 paint.setStyle( SkPaint::kFill_Style );
122 paint.setAlpha( 254 );
123 canvas.drawRect(fullRect, paint);
junov@chromium.org88e29142012-08-07 16:48:22 +0000124 REPORTER_ASSERT(reporter, !canvas.isFreshFrame());
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000125 }
126 {
127 SkPaint paint;
128 paint.setStyle( SkPaint::kFill_Style );
129 SkBitmap bmp;
130 create(&bmp, SkBitmap::kARGB_8888_Config, 0xFFFFFFFF);
131 bmp.setIsOpaque(false);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000132 SkShader* shader = SkShader::CreateBitmapShader(bmp,
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000133 SkShader::kClamp_TileMode, SkShader::kClamp_TileMode);
134 paint.setShader(shader)->unref();
135 canvas.drawRect(fullRect, paint);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000136 REPORTER_ASSERT(reporter, !canvas.isFreshFrame());
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000137 }
138
139 // Verify that incomplete coverage does not trigger a fresh frame
140 {
141 SkPaint paint;
142 paint.setStyle(SkPaint::kFill_Style);
143 paint.setAlpha(255);
144 canvas.drawRect(partialRect, paint);
junov@chromium.org88e29142012-08-07 16:48:22 +0000145 REPORTER_ASSERT(reporter, !canvas.isFreshFrame());
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000146 }
147
148 // Verify that incomplete coverage due to clipping does not trigger a fresh
149 // frame
150 {
151 canvas.save(SkCanvas::kMatrixClip_SaveFlag);
152 canvas.clipRect(partialRect, SkRegion::kIntersect_Op, false);
153 SkPaint paint;
154 paint.setStyle(SkPaint::kFill_Style);
155 paint.setAlpha(255);
156 canvas.drawRect(fullRect, paint);
junov@chromium.org88e29142012-08-07 16:48:22 +0000157 REPORTER_ASSERT(reporter, !canvas.isFreshFrame());
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000158 }
159
160 // Verify that stroked rect does not trigger a fresh frame
161 {
162 SkPaint paint;
163 paint.setStyle( SkPaint::kStroke_Style );
164 paint.setAlpha( 255 );
165 canvas.drawRect(fullRect, paint);
junov@chromium.org88e29142012-08-07 16:48:22 +0000166 REPORTER_ASSERT(reporter, !canvas.isFreshFrame());
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000167 }
rmistry@google.comd6176b02012-08-23 18:14:13 +0000168
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000169 // Verify kSrcMode triggers a fresh frame even with transparent color
170 {
171 SkPaint paint;
172 paint.setStyle( SkPaint::kFill_Style );
173 paint.setAlpha( 100 );
174 paint.setXfermodeMode(SkXfermode::kSrc_Mode);
175 canvas.drawRect(fullRect, paint);
junov@chromium.org88e29142012-08-07 16:48:22 +0000176 REPORTER_ASSERT(reporter, !canvas.isFreshFrame());
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000177 }
178}
179
junov@chromium.orgbfeddae2012-07-23 13:35:14 +0000180class MockDevice : public SkDevice {
181public:
182 MockDevice(const SkBitmap& bm) : SkDevice(bm) {
183 fDrawBitmapCallCount = 0;
184 }
185 virtual void drawBitmap(const SkDraw&, const SkBitmap&,
186 const SkIRect*,
187 const SkMatrix&, const SkPaint&) {
188 fDrawBitmapCallCount++;
189 }
190
191 int fDrawBitmapCallCount;
192};
193
194// Verifies that the deferred canvas triggers a flush when its memory
195// limit is exceeded
196static void TestDeferredCanvasMemoryLimit(skiatest::Reporter* reporter) {
197 SkBitmap store;
198 store.setConfig(SkBitmap::kARGB_8888_Config, 100, 100);
199 store.allocPixels();
200 MockDevice mockDevice(store);
201 SkDeferredCanvas canvas(&mockDevice);
202 canvas.setMaxRecordingStorage(160000);
203
204 SkBitmap sourceImage;
205 // 100 by 100 image, takes 40,000 bytes in memory
206 sourceImage.setConfig(SkBitmap::kARGB_8888_Config, 100, 100);
207 sourceImage.allocPixels();
208
junov@chromium.orgb10a6bd2012-07-25 17:27:13 +0000209 for (int i = 0; i < 5; i++) {
junov@chromium.orgbfeddae2012-07-23 13:35:14 +0000210 sourceImage.notifyPixelsChanged(); // to force re-serialization
211 canvas.drawBitmap(sourceImage, 0, 0, NULL);
212 }
213
scroggo@google.com15011ee2012-07-26 20:03:32 +0000214 REPORTER_ASSERT(reporter, mockDevice.fDrawBitmapCallCount == 4);
junov@chromium.orgbfeddae2012-07-23 13:35:14 +0000215}
216
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000217class NotificationCounter : public SkDeferredCanvas::NotificationClient {
218public:
219 NotificationCounter() {
junov@google.com52a00ca2012-10-01 15:27:14 +0000220 fPrepareForDrawCount = fStorageAllocatedChangedCount =
221 fFlushedDrawCommandsCount = fSkippedPendingDrawCommandsCount = 0;
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000222 }
223
224 virtual void prepareForDraw() SK_OVERRIDE {
225 fPrepareForDrawCount++;
226 }
227 virtual void storageAllocatedForRecordingChanged(size_t size) SK_OVERRIDE {
228 fStorageAllocatedChangedCount++;
229 }
230 virtual void flushedDrawCommands() SK_OVERRIDE {
rmistry@google.comd6176b02012-08-23 18:14:13 +0000231 fFlushedDrawCommandsCount++;
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000232 }
junov@google.com52a00ca2012-10-01 15:27:14 +0000233 virtual void skippedPendingDrawCommands() SK_OVERRIDE {
234 fSkippedPendingDrawCommandsCount++;
235 }
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000236
237 int fPrepareForDrawCount;
238 int fStorageAllocatedChangedCount;
239 int fFlushedDrawCommandsCount;
junov@google.com52a00ca2012-10-01 15:27:14 +0000240 int fSkippedPendingDrawCommandsCount;
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000241};
242
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000243static void TestDeferredCanvasBitmapCaching(skiatest::Reporter* reporter) {
244 SkBitmap store;
245 store.setConfig(SkBitmap::kARGB_8888_Config, 100, 100);
246 store.allocPixels();
247 SkDevice device(store);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000248 NotificationCounter notificationCounter;
junov@chromium.orgd433c4e2012-08-17 14:50:16 +0000249 SkDeferredCanvas canvas(&device);
250 canvas.setNotificationClient(&notificationCounter);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000251
252 const int imageCount = 2;
253 SkBitmap sourceImages[imageCount];
254 for (int i = 0; i < imageCount; i++)
255 {
256 sourceImages[i].setConfig(SkBitmap::kARGB_8888_Config, 100, 100);
257 sourceImages[i].allocPixels();
258 }
259
260 size_t bitmapSize = sourceImages[0].getSize();
261
262 canvas.drawBitmap(sourceImages[0], 0, 0, NULL);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000263 REPORTER_ASSERT(reporter, 1 == notificationCounter.fStorageAllocatedChangedCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000264 // stored bitmap + drawBitmap command
265 REPORTER_ASSERT(reporter, canvas.storageAllocatedForRecording() > bitmapSize);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000266
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000267 // verify that nothing can be freed at this point
bsalomon@google.com100abf42012-09-05 17:40:04 +0000268 REPORTER_ASSERT(reporter, 0 == canvas.freeMemoryIfPossible(~0U));
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000269
270 // verify that flush leaves image in cache
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000271 REPORTER_ASSERT(reporter, 0 == notificationCounter.fFlushedDrawCommandsCount);
272 REPORTER_ASSERT(reporter, 0 == notificationCounter.fPrepareForDrawCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000273 canvas.flush();
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000274 REPORTER_ASSERT(reporter, 1 == notificationCounter.fFlushedDrawCommandsCount);
275 REPORTER_ASSERT(reporter, 1 == notificationCounter.fPrepareForDrawCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000276 REPORTER_ASSERT(reporter, canvas.storageAllocatedForRecording() >= bitmapSize);
277
278 // verify that after a flush, cached image can be freed
bsalomon@google.com100abf42012-09-05 17:40:04 +0000279 REPORTER_ASSERT(reporter, canvas.freeMemoryIfPossible(~0U) >= bitmapSize);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000280
281 // Verify that caching works for avoiding multiple copies of the same bitmap
282 canvas.drawBitmap(sourceImages[0], 0, 0, NULL);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000283 REPORTER_ASSERT(reporter, 2 == notificationCounter.fStorageAllocatedChangedCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000284 canvas.drawBitmap(sourceImages[0], 0, 0, NULL);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000285 REPORTER_ASSERT(reporter, 2 == notificationCounter.fStorageAllocatedChangedCount);
286 REPORTER_ASSERT(reporter, 1 == notificationCounter.fFlushedDrawCommandsCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000287 REPORTER_ASSERT(reporter, canvas.storageAllocatedForRecording() < 2 * bitmapSize);
288
289 // Verify partial eviction based on bytesToFree
290 canvas.drawBitmap(sourceImages[1], 0, 0, NULL);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000291 REPORTER_ASSERT(reporter, 1 == notificationCounter.fFlushedDrawCommandsCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000292 canvas.flush();
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000293 REPORTER_ASSERT(reporter, 2 == notificationCounter.fFlushedDrawCommandsCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000294 REPORTER_ASSERT(reporter, canvas.storageAllocatedForRecording() > 2 * bitmapSize);
295 size_t bytesFreed = canvas.freeMemoryIfPossible(1);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000296 REPORTER_ASSERT(reporter, 2 == notificationCounter.fFlushedDrawCommandsCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000297 REPORTER_ASSERT(reporter, bytesFreed >= bitmapSize);
298 REPORTER_ASSERT(reporter, bytesFreed < 2*bitmapSize);
299
rmistry@google.comd6176b02012-08-23 18:14:13 +0000300 // Verifiy that partial purge works, image zero is in cache but not reffed by
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000301 // a pending draw, while image 1 is locked-in.
bsalomon@google.com100abf42012-09-05 17:40:04 +0000302 canvas.freeMemoryIfPossible(~0U);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000303 REPORTER_ASSERT(reporter, 2 == notificationCounter.fFlushedDrawCommandsCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000304 canvas.drawBitmap(sourceImages[0], 0, 0, NULL);
305 canvas.flush();
306 canvas.drawBitmap(sourceImages[1], 0, 0, NULL);
bsalomon@google.com100abf42012-09-05 17:40:04 +0000307 bytesFreed = canvas.freeMemoryIfPossible(~0U);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000308 // only one bitmap should have been freed.
309 REPORTER_ASSERT(reporter, bytesFreed >= bitmapSize);
310 REPORTER_ASSERT(reporter, bytesFreed < 2*bitmapSize);
311 // Clear for next test
312 canvas.flush();
bsalomon@google.com100abf42012-09-05 17:40:04 +0000313 canvas.freeMemoryIfPossible(~0U);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000314 REPORTER_ASSERT(reporter, canvas.storageAllocatedForRecording() < bitmapSize);
315
316 // Verify the image cache is sensitive to genID bumps
317 canvas.drawBitmap(sourceImages[1], 0, 0, NULL);
318 sourceImages[1].notifyPixelsChanged();
319 canvas.drawBitmap(sourceImages[1], 0, 0, NULL);
320 REPORTER_ASSERT(reporter, canvas.storageAllocatedForRecording() > 2*bitmapSize);
junov@google.com52a00ca2012-10-01 15:27:14 +0000321
322 // Verify that nothing in this test caused commands to be skipped
323 REPORTER_ASSERT(reporter, 0 == notificationCounter.fSkippedPendingDrawCommandsCount);
324}
325
326static void TestDeferredCanvasSkip(skiatest::Reporter* reporter) {
327 SkBitmap store;
328 store.setConfig(SkBitmap::kARGB_8888_Config, 100, 100);
329 store.allocPixels();
330 SkDevice device(store);
331 NotificationCounter notificationCounter;
332 SkDeferredCanvas canvas(&device);
333 canvas.setNotificationClient(&notificationCounter);
334 canvas.clear(0x0);
335 REPORTER_ASSERT(reporter, 1 == notificationCounter.fSkippedPendingDrawCommandsCount);
336 REPORTER_ASSERT(reporter, 0 == notificationCounter.fFlushedDrawCommandsCount);
337 canvas.flush();
338 REPORTER_ASSERT(reporter, 1 == notificationCounter.fSkippedPendingDrawCommandsCount);
339 REPORTER_ASSERT(reporter, 1 == notificationCounter.fFlushedDrawCommandsCount);
340
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000341}
junov@chromium.orgbfeddae2012-07-23 13:35:14 +0000342
junov@chromium.org1f9767c2012-02-07 16:27:57 +0000343static void TestDeferredCanvas(skiatest::Reporter* reporter) {
344 TestDeferredCanvasBitmapAccess(reporter);
345 TestDeferredCanvasFlush(reporter);
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000346 TestDeferredCanvasFreshFrame(reporter);
junov@chromium.orgbfeddae2012-07-23 13:35:14 +0000347 TestDeferredCanvasMemoryLimit(reporter);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000348 TestDeferredCanvasBitmapCaching(reporter);
junov@google.com52a00ca2012-10-01 15:27:14 +0000349 TestDeferredCanvasSkip(reporter);
junov@chromium.org1f9767c2012-02-07 16:27:57 +0000350}
351
352#include "TestClassDef.h"
353DEFINE_TESTCLASS("DeferredCanvas", TestDeferredCanvasClass, TestDeferredCanvas)