blob: 5eda56832f786bc9271b66bb95410cdb3bc96100 [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() {
220 fPrepareForDrawCount = fStorageAllocatedChangedCount = fFlushedDrawCommandsCount = 0;
221 }
222
223 virtual void prepareForDraw() SK_OVERRIDE {
224 fPrepareForDrawCount++;
225 }
226 virtual void storageAllocatedForRecordingChanged(size_t size) SK_OVERRIDE {
227 fStorageAllocatedChangedCount++;
228 }
229 virtual void flushedDrawCommands() SK_OVERRIDE {
rmistry@google.comd6176b02012-08-23 18:14:13 +0000230 fFlushedDrawCommandsCount++;
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000231 }
232
233 int fPrepareForDrawCount;
234 int fStorageAllocatedChangedCount;
235 int fFlushedDrawCommandsCount;
236};
237
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000238static void TestDeferredCanvasBitmapCaching(skiatest::Reporter* reporter) {
239 SkBitmap store;
240 store.setConfig(SkBitmap::kARGB_8888_Config, 100, 100);
241 store.allocPixels();
242 SkDevice device(store);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000243 NotificationCounter notificationCounter;
junov@chromium.orgd433c4e2012-08-17 14:50:16 +0000244 SkDeferredCanvas canvas(&device);
245 canvas.setNotificationClient(&notificationCounter);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000246
247 const int imageCount = 2;
248 SkBitmap sourceImages[imageCount];
249 for (int i = 0; i < imageCount; i++)
250 {
251 sourceImages[i].setConfig(SkBitmap::kARGB_8888_Config, 100, 100);
252 sourceImages[i].allocPixels();
253 }
254
255 size_t bitmapSize = sourceImages[0].getSize();
256
257 canvas.drawBitmap(sourceImages[0], 0, 0, NULL);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000258 REPORTER_ASSERT(reporter, 1 == notificationCounter.fStorageAllocatedChangedCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000259 // stored bitmap + drawBitmap command
260 REPORTER_ASSERT(reporter, canvas.storageAllocatedForRecording() > bitmapSize);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000261
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000262 // verify that nothing can be freed at this point
263 REPORTER_ASSERT(reporter, 0 == canvas.freeMemoryIfPossible(~0));
264
265 // verify that flush leaves image in cache
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000266 REPORTER_ASSERT(reporter, 0 == notificationCounter.fFlushedDrawCommandsCount);
267 REPORTER_ASSERT(reporter, 0 == notificationCounter.fPrepareForDrawCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000268 canvas.flush();
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000269 REPORTER_ASSERT(reporter, 1 == notificationCounter.fFlushedDrawCommandsCount);
270 REPORTER_ASSERT(reporter, 1 == notificationCounter.fPrepareForDrawCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000271 REPORTER_ASSERT(reporter, canvas.storageAllocatedForRecording() >= bitmapSize);
272
273 // verify that after a flush, cached image can be freed
274 REPORTER_ASSERT(reporter, canvas.freeMemoryIfPossible(~0) >= bitmapSize);
275
276 // Verify that caching works for avoiding multiple copies of the same bitmap
277 canvas.drawBitmap(sourceImages[0], 0, 0, NULL);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000278 REPORTER_ASSERT(reporter, 2 == notificationCounter.fStorageAllocatedChangedCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000279 canvas.drawBitmap(sourceImages[0], 0, 0, NULL);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000280 REPORTER_ASSERT(reporter, 2 == notificationCounter.fStorageAllocatedChangedCount);
281 REPORTER_ASSERT(reporter, 1 == notificationCounter.fFlushedDrawCommandsCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000282 REPORTER_ASSERT(reporter, canvas.storageAllocatedForRecording() < 2 * bitmapSize);
283
284 // Verify partial eviction based on bytesToFree
285 canvas.drawBitmap(sourceImages[1], 0, 0, NULL);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000286 REPORTER_ASSERT(reporter, 1 == notificationCounter.fFlushedDrawCommandsCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000287 canvas.flush();
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000288 REPORTER_ASSERT(reporter, 2 == notificationCounter.fFlushedDrawCommandsCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000289 REPORTER_ASSERT(reporter, canvas.storageAllocatedForRecording() > 2 * bitmapSize);
290 size_t bytesFreed = canvas.freeMemoryIfPossible(1);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000291 REPORTER_ASSERT(reporter, 2 == notificationCounter.fFlushedDrawCommandsCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000292 REPORTER_ASSERT(reporter, bytesFreed >= bitmapSize);
293 REPORTER_ASSERT(reporter, bytesFreed < 2*bitmapSize);
294
rmistry@google.comd6176b02012-08-23 18:14:13 +0000295 // Verifiy that partial purge works, image zero is in cache but not reffed by
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000296 // a pending draw, while image 1 is locked-in.
297 canvas.freeMemoryIfPossible(~0);
junov@chromium.org9ed02b92012-08-14 13:36:26 +0000298 REPORTER_ASSERT(reporter, 2 == notificationCounter.fFlushedDrawCommandsCount);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000299 canvas.drawBitmap(sourceImages[0], 0, 0, NULL);
300 canvas.flush();
301 canvas.drawBitmap(sourceImages[1], 0, 0, NULL);
302 bytesFreed = canvas.freeMemoryIfPossible(~0);
303 // only one bitmap should have been freed.
304 REPORTER_ASSERT(reporter, bytesFreed >= bitmapSize);
305 REPORTER_ASSERT(reporter, bytesFreed < 2*bitmapSize);
306 // Clear for next test
307 canvas.flush();
308 canvas.freeMemoryIfPossible(~0);
309 REPORTER_ASSERT(reporter, canvas.storageAllocatedForRecording() < bitmapSize);
310
311 // Verify the image cache is sensitive to genID bumps
312 canvas.drawBitmap(sourceImages[1], 0, 0, NULL);
313 sourceImages[1].notifyPixelsChanged();
314 canvas.drawBitmap(sourceImages[1], 0, 0, NULL);
315 REPORTER_ASSERT(reporter, canvas.storageAllocatedForRecording() > 2*bitmapSize);
316}
junov@chromium.orgbfeddae2012-07-23 13:35:14 +0000317
junov@chromium.org1f9767c2012-02-07 16:27:57 +0000318static void TestDeferredCanvas(skiatest::Reporter* reporter) {
319 TestDeferredCanvasBitmapAccess(reporter);
320 TestDeferredCanvasFlush(reporter);
junov@chromium.org8f9ecbd2012-02-13 21:53:45 +0000321 TestDeferredCanvasFreshFrame(reporter);
junov@chromium.orgbfeddae2012-07-23 13:35:14 +0000322 TestDeferredCanvasMemoryLimit(reporter);
junov@chromium.org2e14ba82012-08-07 14:26:57 +0000323 TestDeferredCanvasBitmapCaching(reporter);
junov@chromium.org1f9767c2012-02-07 16:27:57 +0000324}
325
326#include "TestClassDef.h"
327DEFINE_TESTCLASS("DeferredCanvas", TestDeferredCanvasClass, TestDeferredCanvas)