blob: 7449f211b560c1066667735a84d870341aed61d2 [file] [log] [blame]
junov@chromium.org995beb62013-03-28 13:49:22 +00001/*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
tfarina@chromium.org4ee16bf2014-01-10 22:08:27 +00007
bsalomone63ffef2016-02-05 07:17:34 -08008#include <functional>
junov@chromium.org995beb62013-03-28 13:49:22 +00009#include "SkCanvas.h"
reed@google.com4f7c6152014-02-06 14:11:56 +000010#include "SkData.h"
reed41e010c2015-06-09 12:16:53 -070011#include "SkDevice.h"
bsalomon55812362015-06-10 08:49:28 -070012#include "SkImage_Base.h"
bungemand3ebb482015-08-05 13:57:49 -070013#include "SkPath.h"
junov@chromium.org995beb62013-03-28 13:49:22 +000014#include "SkRRect.h"
15#include "SkSurface.h"
reed@google.com4f7c6152014-02-06 14:11:56 +000016#include "SkUtils.h"
junov@chromium.org995beb62013-03-28 13:49:22 +000017#include "Test.h"
18
19#if SK_SUPPORT_GPU
kkinnunen179a8f52015-11-20 13:32:24 -080020#include "GrContext.h"
21#include "GrGpu.h"
junov@chromium.org995beb62013-03-28 13:49:22 +000022#endif
23
kkinnunen179a8f52015-11-20 13:32:24 -080024#include <initializer_list>
bsalomon74f681d2015-06-23 14:38:48 -070025
kkinnunen179a8f52015-11-20 13:32:24 -080026static void release_direct_surface_storage(void* pixels, void* context) {
reed982542d2014-06-27 06:48:14 -070027 SkASSERT(pixels == context);
28 sk_free(pixels);
29}
kkinnunen179a8f52015-11-20 13:32:24 -080030static SkSurface* create_surface(SkAlphaType at = kPremul_SkAlphaType,
halcanary96fcdcc2015-08-27 07:41:13 -070031 SkImageInfo* requestedInfo = nullptr) {
bsalomon74f681d2015-06-23 14:38:48 -070032 const SkImageInfo info = SkImageInfo::MakeN32(10, 10, at);
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +000033 if (requestedInfo) {
34 *requestedInfo = info;
35 }
kkinnunen179a8f52015-11-20 13:32:24 -080036 return SkSurface::NewRaster(info);
junov@chromium.org995beb62013-03-28 13:49:22 +000037}
kkinnunen179a8f52015-11-20 13:32:24 -080038static SkSurface* create_direct_surface(SkAlphaType at = kPremul_SkAlphaType,
39 SkImageInfo* requestedInfo = nullptr) {
40 const SkImageInfo info = SkImageInfo::MakeN32(10, 10, at);
41 if (requestedInfo) {
42 *requestedInfo = info;
43 }
44 const size_t rowBytes = info.minRowBytes();
45 void* storage = sk_malloc_throw(info.getSafeSize(rowBytes));
46 return SkSurface::NewRasterDirectReleaseProc(info, storage, rowBytes,
47 release_direct_surface_storage,
48 storage);
49}
50#if SK_SUPPORT_GPU
51static SkSurface* create_gpu_surface(GrContext* context, SkAlphaType at = kPremul_SkAlphaType,
52 SkImageInfo* requestedInfo = nullptr) {
53 const SkImageInfo info = SkImageInfo::MakeN32(10, 10, at);
54 if (requestedInfo) {
55 *requestedInfo = info;
56 }
bsalomon5ec26ae2016-02-25 08:33:02 -080057 return SkSurface::NewRenderTarget(context, SkBudgeted::kNo, info, 0, nullptr);
kkinnunen179a8f52015-11-20 13:32:24 -080058}
59static SkSurface* create_gpu_scratch_surface(GrContext* context,
60 SkAlphaType at = kPremul_SkAlphaType,
61 SkImageInfo* requestedInfo = nullptr) {
62 const SkImageInfo info = SkImageInfo::MakeN32(10, 10, at);
63 if (requestedInfo) {
64 *requestedInfo = info;
65 }
bsalomon5ec26ae2016-02-25 08:33:02 -080066 return SkSurface::NewRenderTarget(context, SkBudgeted::kYes, info, 0, nullptr);
kkinnunen179a8f52015-11-20 13:32:24 -080067}
68#endif
junov@chromium.org995beb62013-03-28 13:49:22 +000069
kkinnunen179a8f52015-11-20 13:32:24 -080070DEF_TEST(SurfaceEmpty, reporter) {
reedb2497c22014-12-31 12:31:43 -080071 const SkImageInfo info = SkImageInfo::Make(0, 0, kN32_SkColorType, kPremul_SkAlphaType);
halcanary96fcdcc2015-08-27 07:41:13 -070072 REPORTER_ASSERT(reporter, nullptr == SkSurface::NewRaster(info));
73 REPORTER_ASSERT(reporter, nullptr == SkSurface::NewRasterDirect(info, nullptr, 0));
kkinnunen179a8f52015-11-20 13:32:24 -080074
reedb2497c22014-12-31 12:31:43 -080075}
kkinnunen179a8f52015-11-20 13:32:24 -080076#if SK_SUPPORT_GPU
77DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceEmpty_Gpu, reporter, context) {
78 const SkImageInfo info = SkImageInfo::Make(0, 0, kN32_SkColorType, kPremul_SkAlphaType);
79 REPORTER_ASSERT(reporter, nullptr ==
bsalomon5ec26ae2016-02-25 08:33:02 -080080 SkSurface::NewRenderTarget(context, SkBudgeted::kNo, info, 0, nullptr));
kkinnunen179a8f52015-11-20 13:32:24 -080081}
82#endif
reedb2497c22014-12-31 12:31:43 -080083
bsalomone4579ad2015-04-08 08:38:40 -070084#if SK_SUPPORT_GPU
kkinnunen179a8f52015-11-20 13:32:24 -080085DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceWrappedTexture, reporter, context) {
bsalomone63ffef2016-02-05 07:17:34 -080086 GrGpu* gpu = context->getGpu();
jvanverth672bb7f2015-07-13 07:19:57 -070087 if (!gpu) {
bsalomone4579ad2015-04-08 08:38:40 -070088 return;
89 }
bsalomon7a617932015-06-16 08:07:16 -070090
jvanverth672bb7f2015-07-13 07:19:57 -070091 // Test the wrapped factory for SkSurface by creating a backend texture and then wrap it in
joshualitt81793412015-07-08 12:54:04 -070092 // a SkSurface.
joshualitt81793412015-07-08 12:54:04 -070093 static const int kW = 100;
94 static const int kH = 100;
95 static const uint32_t kOrigColor = 0xFFAABBCC;
96 SkAutoTArray<uint32_t> pixels(kW * kH);
97 sk_memset32(pixels.get(), kOrigColor, kW * kH);
bsalomon091f60c2015-11-10 11:54:56 -080098 GrBackendObject texHandle = gpu->createTestingOnlyBackendTexture(pixels.get(), kW, kH,
99 kRGBA_8888_GrPixelConfig);
bsalomone4579ad2015-04-08 08:38:40 -0700100
joshualitt81793412015-07-08 12:54:04 -0700101 GrBackendTextureDesc wrappedDesc;
102 wrappedDesc.fConfig = kRGBA_8888_GrPixelConfig;
103 wrappedDesc.fWidth = kW;
104 wrappedDesc.fHeight = kH;
105 wrappedDesc.fOrigin = kBottomLeft_GrSurfaceOrigin;
106 wrappedDesc.fSampleCnt = 0;
107 wrappedDesc.fFlags = kRenderTarget_GrBackendTextureFlag;
bsalomon091f60c2015-11-10 11:54:56 -0800108 wrappedDesc.fTextureHandle = texHandle;
bsalomone4579ad2015-04-08 08:38:40 -0700109
kkinnunen179a8f52015-11-20 13:32:24 -0800110 SkAutoTUnref<SkSurface> surface(
111 SkSurface::NewWrappedRenderTarget(context, wrappedDesc, nullptr));
joshualitt81793412015-07-08 12:54:04 -0700112 REPORTER_ASSERT(reporter, surface);
113 if (surface) {
114 // Validate that we can draw to the canvas and that the original texture color is preserved
115 // in pixels that aren't rendered to via the surface.
116 SkPaint paint;
117 static const SkColor kRectColor = ~kOrigColor | 0xFF000000;
118 paint.setColor(kRectColor);
119 surface->getCanvas()->drawRect(SkRect::MakeWH(SkIntToScalar(kW), SkIntToScalar(kH)/2),
120 paint);
121 SkImageInfo readInfo = SkImageInfo::MakeN32Premul(kW, kH);
122 surface->readPixels(readInfo, pixels.get(), kW * sizeof(uint32_t), 0, 0);
123 bool stop = false;
124 SkPMColor origColorPM = SkPackARGB32((kOrigColor >> 24 & 0xFF),
125 (kOrigColor >> 0 & 0xFF),
126 (kOrigColor >> 8 & 0xFF),
127 (kOrigColor >> 16 & 0xFF));
128 SkPMColor rectColorPM = SkPackARGB32((kRectColor >> 24 & 0xFF),
129 (kRectColor >> 16 & 0xFF),
130 (kRectColor >> 8 & 0xFF),
131 (kRectColor >> 0 & 0xFF));
132 for (int y = 0; y < kH/2 && !stop; ++y) {
133 for (int x = 0; x < kW && !stop; ++x) {
134 REPORTER_ASSERT(reporter, rectColorPM == pixels[x + y * kW]);
135 if (rectColorPM != pixels[x + y * kW]) {
136 stop = true;
bsalomon7a617932015-06-16 08:07:16 -0700137 }
138 }
139 }
joshualitt81793412015-07-08 12:54:04 -0700140 stop = false;
141 for (int y = kH/2; y < kH && !stop; ++y) {
142 for (int x = 0; x < kW && !stop; ++x) {
143 REPORTER_ASSERT(reporter, origColorPM == pixels[x + y * kW]);
144 if (origColorPM != pixels[x + y * kW]) {
145 stop = true;
146 }
147 }
bsalomon7a617932015-06-16 08:07:16 -0700148 }
149 }
bsalomon67d76202015-11-11 12:40:42 -0800150 gpu->deleteTestingOnlyBackendTexture(texHandle);
bsalomone4579ad2015-04-08 08:38:40 -0700151}
152#endif
153
kkinnunen179a8f52015-11-20 13:32:24 -0800154static void test_canvas_peek(skiatest::Reporter* reporter,
155 SkSurface* surface,
156 const SkImageInfo& requestInfo,
157 bool expectPeekSuccess) {
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000158 const SkColor color = SK_ColorRED;
159 const SkPMColor pmcolor = SkPreMultiplyColor(color);
kkinnunen179a8f52015-11-20 13:32:24 -0800160 SkImageInfo info;
161 size_t rowBytes;
162 surface->getCanvas()->clear(color);
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000163
kkinnunen179a8f52015-11-20 13:32:24 -0800164 const void* addr = surface->getCanvas()->peekPixels(&info, &rowBytes);
165 bool success = SkToBool(addr);
166 REPORTER_ASSERT(reporter, expectPeekSuccess == success);
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000167
kkinnunen179a8f52015-11-20 13:32:24 -0800168 SkImageInfo info2;
169 size_t rb2;
170 const void* addr2 = surface->peekPixels(&info2, &rb2);
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000171
kkinnunen179a8f52015-11-20 13:32:24 -0800172 if (success) {
173 REPORTER_ASSERT(reporter, requestInfo == info);
174 REPORTER_ASSERT(reporter, requestInfo.minRowBytes() <= rowBytes);
175 REPORTER_ASSERT(reporter, pmcolor == *(const SkPMColor*)addr);
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000176
kkinnunen179a8f52015-11-20 13:32:24 -0800177 REPORTER_ASSERT(reporter, addr2 == addr);
178 REPORTER_ASSERT(reporter, info2 == info);
179 REPORTER_ASSERT(reporter, rb2 == rowBytes);
180 } else {
181 REPORTER_ASSERT(reporter, nullptr == addr2);
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000182 }
183}
kkinnunen179a8f52015-11-20 13:32:24 -0800184DEF_TEST(SurfaceCanvasPeek, reporter) {
185 for (auto& surface_func : { &create_surface, &create_direct_surface }) {
186 SkImageInfo requestInfo;
187 SkAutoTUnref<SkSurface> surface(surface_func(kPremul_SkAlphaType, &requestInfo));
188 test_canvas_peek(reporter, surface, requestInfo, true);
189 }
190}
191#if SK_SUPPORT_GPU
192DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceCanvasPeek_Gpu, reporter, context) {
193 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
194 SkImageInfo requestInfo;
195 SkAutoTUnref<SkSurface> surface(surface_func(context, kPremul_SkAlphaType, &requestInfo));
196 test_canvas_peek(reporter, surface, requestInfo, false);
197 }
198}
199#endif
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000200
reed41e010c2015-06-09 12:16:53 -0700201// For compatibility with clients that still call accessBitmap(), we need to ensure that we bump
202// the bitmap's genID when we draw to it, else they won't know it has new values. When they are
203// exclusively using surface/image, and we can hide accessBitmap from device, we can remove this
204// test.
kkinnunen179a8f52015-11-20 13:32:24 -0800205void test_access_pixels(skiatest::Reporter* reporter, SkSurface* surface) {
206 SkCanvas* canvas = surface->getCanvas();
207 canvas->clear(0);
reed41e010c2015-06-09 12:16:53 -0700208
kkinnunen179a8f52015-11-20 13:32:24 -0800209 SkBaseDevice* device = canvas->getDevice_just_for_deprecated_compatibility_testing();
210 SkBitmap bm = device->accessBitmap(false);
211 uint32_t genID0 = bm.getGenerationID();
212 // Now we draw something, which needs to "dirty" the genID (sorta like copy-on-write)
213 canvas->drawColor(SK_ColorBLUE);
214 // Now check that we get a different genID
215 uint32_t genID1 = bm.getGenerationID();
216 REPORTER_ASSERT(reporter, genID0 != genID1);
217}
218DEF_TEST(SurfaceAccessPixels, reporter) {
219 for (auto& surface_func : { &create_surface, &create_direct_surface }) {
220 SkAutoTUnref<SkSurface> surface(surface_func(kPremul_SkAlphaType, nullptr));
221 test_access_pixels(reporter, surface);
222 }
223}
224#if SK_SUPPORT_GPU
225DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceAccessPixels_Gpu, reporter, context) {
226 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
227 SkAutoTUnref<SkSurface> surface(surface_func(context, kPremul_SkAlphaType, nullptr));
228 test_access_pixels(reporter, surface);
229 }
230}
231#endif
232
233static void test_snapshot_alphatype(skiatest::Reporter* reporter, SkSurface* surface,
234 bool expectOpaque) {
235 REPORTER_ASSERT(reporter, surface);
236 if (surface) {
237 SkAutoTUnref<SkImage> image(surface->newImageSnapshot());
238 REPORTER_ASSERT(reporter, image);
239 if (image) {
240 REPORTER_ASSERT(reporter, image->isOpaque() == SkToBool(expectOpaque));
reed41e010c2015-06-09 12:16:53 -0700241 }
242 }
243}
kkinnunen179a8f52015-11-20 13:32:24 -0800244DEF_TEST(SurfaceSnapshotAlphaType, reporter) {
245 for (auto& surface_func : { &create_surface, &create_direct_surface }) {
246 for (auto& isOpaque : { true, false }) {
247 SkAlphaType alphaType = isOpaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType;
248 SkAutoTUnref<SkSurface> surface(surface_func(alphaType, nullptr));
249 test_snapshot_alphatype(reporter, surface, isOpaque);
bsalomon74f681d2015-06-23 14:38:48 -0700250 }
251 }
252}
kkinnunen179a8f52015-11-20 13:32:24 -0800253#if SK_SUPPORT_GPU
254DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceSnapshotAlphaType_Gpu, reporter, context) {
255 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
256 for (auto& isOpaque : { true, false }) {
257 SkAlphaType alphaType = isOpaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType;
258 SkAutoTUnref<SkSurface> surface(surface_func(context, alphaType, nullptr));
259 test_snapshot_alphatype(reporter, surface, isOpaque);
260 }
261 }
262}
263#endif
bsalomon74f681d2015-06-23 14:38:48 -0700264
kkinnunen179a8f52015-11-20 13:32:24 -0800265static GrBackendObject get_surface_backend_texture_handle(
266 SkSurface* s, SkSurface::BackendHandleAccess a) {
267 return s->getTextureHandle(a);
268}
269static GrBackendObject get_surface_backend_render_target_handle(
270 SkSurface* s, SkSurface::BackendHandleAccess a) {
271 GrBackendObject result;
272 if (!s->getRenderTargetHandle(&result, a)) {
273 return 0;
274 }
275 return result;
276}
277
278static void test_backend_handle_access_copy_on_write(
279 skiatest::Reporter* reporter, SkSurface* surface, SkSurface::BackendHandleAccess mode,
280 GrBackendObject (*func)(SkSurface*, SkSurface::BackendHandleAccess)) {
fmalitae2639082015-08-06 07:04:51 -0700281 GrBackendObject obj1 = func(surface, mode);
282 SkAutoTUnref<SkImage> snap1(surface->newImageSnapshot());
283
284 GrBackendObject obj2 = func(surface, mode);
285 SkAutoTUnref<SkImage> snap2(surface->newImageSnapshot());
286
287 // If the access mode triggers CoW, then the backend objects should reflect it.
288 REPORTER_ASSERT(reporter, (obj1 == obj2) == (snap1 == snap2));
289}
kkinnunen179a8f52015-11-20 13:32:24 -0800290DEF_TEST(SurfaceBackendHandleAccessCopyOnWrite, reporter) {
291 const SkSurface::BackendHandleAccess accessModes[] = {
292 SkSurface::kFlushRead_BackendHandleAccess,
293 SkSurface::kFlushWrite_BackendHandleAccess,
294 SkSurface::kDiscardWrite_BackendHandleAccess,
295 };
296 for (auto& handle_access_func :
297 { &get_surface_backend_texture_handle, &get_surface_backend_render_target_handle }) {
298 for (auto& accessMode : accessModes) {
299 SkAutoTUnref<SkSurface> surface(create_surface());
300 test_backend_handle_access_copy_on_write(reporter, surface, accessMode,
301 handle_access_func);
302 }
303 }
304}
305#if SK_SUPPORT_GPU
306DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceBackendHandleAccessCopyOnWrite_Gpu, reporter, context) {
307 const SkSurface::BackendHandleAccess accessModes[] = {
308 SkSurface::kFlushRead_BackendHandleAccess,
309 SkSurface::kFlushWrite_BackendHandleAccess,
310 SkSurface::kDiscardWrite_BackendHandleAccess,
311 };
312 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
313 for (auto& handle_access_func :
314 { &get_surface_backend_texture_handle, &get_surface_backend_render_target_handle }) {
315 for (auto& accessMode : accessModes) {
316 SkAutoTUnref<SkSurface> surface(surface_func(context, kPremul_SkAlphaType,
317 nullptr));
318 test_backend_handle_access_copy_on_write(reporter, surface, accessMode,
319 handle_access_func);
320 }
321 }
322 }
323}
324#endif
fmalitae2639082015-08-06 07:04:51 -0700325
bsalomonf47b9a32016-02-22 11:02:58 -0800326static bool same_image(SkImage* a, SkImage* b,
327 std::function<intptr_t(SkImage*)> getImageBackingStore) {
328 return getImageBackingStore(a) == getImageBackingStore(b);
329}
330
331static bool same_image_surf(SkImage* a, SkSurface* b,
332 std::function<intptr_t(SkImage*)> getImageBackingStore,
333 std::function<intptr_t(SkSurface*)> getSurfaceBackingStore) {
334 return getImageBackingStore(a) == getSurfaceBackingStore(b);
335}
336
337static void test_unique_image_snap(skiatest::Reporter* reporter, SkSurface* surface,
338 bool surfaceIsDirect,
339 std::function<intptr_t(SkImage*)> imageBackingStore,
340 std::function<intptr_t(SkSurface*)> surfaceBackingStore) {
341 std::function<intptr_t(SkImage*)> ibs = imageBackingStore;
342 std::function<intptr_t(SkSurface*)> sbs = surfaceBackingStore;
bsalomon5ec26ae2016-02-25 08:33:02 -0800343 static const SkBudgeted kB = SkBudgeted::kNo;
bsalomonf47b9a32016-02-22 11:02:58 -0800344 {
345 SkAutoTUnref<SkImage> image(surface->newImageSnapshot(kB, SkSurface::kYes_ForceUnique));
346 REPORTER_ASSERT(reporter, !same_image_surf(image, surface, ibs, sbs));
347 REPORTER_ASSERT(reporter, image->unique());
348 }
349 {
350 SkAutoTUnref<SkImage> image1(surface->newImageSnapshot(kB, SkSurface::kYes_ForceUnique));
351 REPORTER_ASSERT(reporter, !same_image_surf(image1, surface, ibs, sbs));
352 REPORTER_ASSERT(reporter, image1->unique());
353 SkAutoTUnref<SkImage> image2(surface->newImageSnapshot(kB, SkSurface::kYes_ForceUnique));
354 REPORTER_ASSERT(reporter, !same_image_surf(image2, surface, ibs, sbs));
355 REPORTER_ASSERT(reporter, !same_image(image1, image2, ibs));
356 REPORTER_ASSERT(reporter, image2->unique());
357 }
358 {
359 SkAutoTUnref<SkImage> image1(surface->newImageSnapshot(kB, SkSurface::kNo_ForceUnique));
360 SkAutoTUnref<SkImage> image2(surface->newImageSnapshot(kB, SkSurface::kYes_ForceUnique));
361 SkAutoTUnref<SkImage> image3(surface->newImageSnapshot(kB, SkSurface::kNo_ForceUnique));
362 SkAutoTUnref<SkImage> image4(surface->newImageSnapshot(kB, SkSurface::kYes_ForceUnique));
363 // Image 1 and 3 ought to be the same (or we're missing an optimization).
364 REPORTER_ASSERT(reporter, same_image(image1, image3, ibs));
365 // If the surface is not direct then images 1 and 3 should alias the surface's
366 // store.
367 REPORTER_ASSERT(reporter, !surfaceIsDirect == same_image_surf(image1, surface, ibs, sbs));
368 // Image 2 should not be shared with any other image.
369 REPORTER_ASSERT(reporter, !same_image(image1, image2, ibs) &&
370 !same_image(image3, image2, ibs) &&
371 !same_image(image4, image2, ibs));
372 REPORTER_ASSERT(reporter, image2->unique());
373 REPORTER_ASSERT(reporter, !same_image_surf(image2, surface, ibs, sbs));
374 // Image 4 should not be shared with any other image.
375 REPORTER_ASSERT(reporter, !same_image(image1, image4, ibs) &&
376 !same_image(image3, image4, ibs));
377 REPORTER_ASSERT(reporter, !same_image_surf(image4, surface, ibs, sbs));
378 REPORTER_ASSERT(reporter, image4->unique());
379 }
380}
381
382DEF_TEST(UniqueImageSnapshot, reporter) {
383 auto getImageBackingStore = [reporter](SkImage* image) {
384 SkPixmap pm;
385 bool success = image->peekPixels(&pm);
386 REPORTER_ASSERT(reporter, success);
387 return reinterpret_cast<intptr_t>(pm.addr());
388 };
389 auto getSufaceBackingStore = [reporter](SkSurface* surface) {
390 SkImageInfo info;
391 size_t rowBytes;
392 const void* pixels = surface->getCanvas()->peekPixels(&info, &rowBytes);
393 REPORTER_ASSERT(reporter, pixels);
394 return reinterpret_cast<intptr_t>(pixels);
395 };
396
397 SkAutoTUnref<SkSurface> surface(create_surface());
398 test_unique_image_snap(reporter, surface, false, getImageBackingStore, getSufaceBackingStore);
399 surface.reset(create_direct_surface());
400 test_unique_image_snap(reporter, surface, true, getImageBackingStore, getSufaceBackingStore);
401}
402
403#if SK_SUPPORT_GPU
404DEF_GPUTEST_FOR_RENDERING_CONTEXTS(UniqueImageSnapshot_Gpu, reporter, context) {
405 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
406 SkAutoTUnref<SkSurface> surface(surface_func(context, kOpaque_SkAlphaType, nullptr));
407
408 auto imageBackingStore = [reporter](SkImage* image) {
409 GrTexture* texture = as_IB(image)->peekTexture();
410 if (!texture) {
411 ERRORF(reporter, "Not texture backed.");
412 return static_cast<intptr_t>(0);
413 }
414 return static_cast<intptr_t>(texture->getUniqueID());
415 };
416
417 auto surfaceBackingStore = [reporter](SkSurface* surface) {
418 GrRenderTarget* rt =
419 surface->getCanvas()->internal_private_accessTopLayerRenderTarget();
420 if (!rt) {
421 ERRORF(reporter, "Not render target backed.");
422 return static_cast<intptr_t>(0);
423 }
424 return static_cast<intptr_t>(rt->getUniqueID());
425 };
426
427 test_unique_image_snap(reporter, surface, false, imageBackingStore, surfaceBackingStore);
428
429 // Test again with a "direct" render target;
430 GrBackendObject textureObject = context->getGpu()->createTestingOnlyBackendTexture(nullptr,
431 10, 10, kRGBA_8888_GrPixelConfig);
432 GrBackendTextureDesc desc;
433 desc.fConfig = kRGBA_8888_GrPixelConfig;
434 desc.fWidth = 10;
435 desc.fHeight = 10;
436 desc.fFlags = kRenderTarget_GrBackendTextureFlag;
437 desc.fTextureHandle = textureObject;
438 GrTexture* texture = context->textureProvider()->wrapBackendTexture(desc);
439 {
440 SkAutoTUnref<SkSurface> surface(
441 SkSurface::NewRenderTargetDirect(texture->asRenderTarget()));
442 // We should be able to pass true here, but disallowing copy on write for direct GPU
443 // surfaces is not yet implemented.
444 test_unique_image_snap(reporter, surface, false, imageBackingStore,
445 surfaceBackingStore);
446 }
447 texture->unref();
448 context->getGpu()->deleteTestingOnlyBackendTexture(textureObject);
449 }
450}
451#endif
452
kkinnunen179a8f52015-11-20 13:32:24 -0800453#if SK_SUPPORT_GPU
454// May we (soon) eliminate the need to keep testing this, by hiding the bloody device!
455static uint32_t get_legacy_gen_id(SkSurface* surface) {
456 SkBaseDevice* device =
457 surface->getCanvas()->getDevice_just_for_deprecated_compatibility_testing();
458 return device->accessBitmap(false).getGenerationID();
459}
460/*
461 * Test legacy behavor of bumping the surface's device's bitmap's genID when we access its
462 * texture handle for writing.
463 *
464 * Note: this needs to be tested separately from checking newImageSnapshot, as calling that
465 * can also incidentally bump the genID (when a new backing surface is created).
466 */
467static void test_backend_handle_gen_id(
468 skiatest::Reporter* reporter, SkSurface* surface,
469 GrBackendObject (*func)(SkSurface*, SkSurface::BackendHandleAccess)) {
470 const uint32_t gen0 = get_legacy_gen_id(surface);
471 func(surface, SkSurface::kFlushRead_BackendHandleAccess);
472 const uint32_t gen1 = get_legacy_gen_id(surface);
473 REPORTER_ASSERT(reporter, gen0 == gen1);
474
475 func(surface, SkSurface::kFlushWrite_BackendHandleAccess);
476 const uint32_t gen2 = get_legacy_gen_id(surface);
477 REPORTER_ASSERT(reporter, gen0 != gen2);
478
479 func(surface, SkSurface::kDiscardWrite_BackendHandleAccess);
480 const uint32_t gen3 = get_legacy_gen_id(surface);
481 REPORTER_ASSERT(reporter, gen0 != gen3);
482 REPORTER_ASSERT(reporter, gen2 != gen3);
483}
484static void test_backend_handle_unique_id(
485 skiatest::Reporter* reporter, SkSurface* surface,
486 GrBackendObject (*func)(SkSurface*, SkSurface::BackendHandleAccess)) {
487 SkAutoTUnref<SkImage> image0(surface->newImageSnapshot());
488 GrBackendObject obj = func(surface, SkSurface::kFlushRead_BackendHandleAccess);
489 REPORTER_ASSERT(reporter, obj != 0);
490 SkAutoTUnref<SkImage> image1(surface->newImageSnapshot());
491 // just read access should not affect the snapshot
492 REPORTER_ASSERT(reporter, image0->uniqueID() == image1->uniqueID());
493
494 obj = func(surface, SkSurface::kFlushWrite_BackendHandleAccess);
495 REPORTER_ASSERT(reporter, obj != 0);
496 SkAutoTUnref<SkImage> image2(surface->newImageSnapshot());
497 // expect a new image, since we claimed we would write
498 REPORTER_ASSERT(reporter, image0->uniqueID() != image2->uniqueID());
499
500 obj = func(surface, SkSurface::kDiscardWrite_BackendHandleAccess);
501 REPORTER_ASSERT(reporter, obj != 0);
502 SkAutoTUnref<SkImage> image3(surface->newImageSnapshot());
503 // expect a new(er) image, since we claimed we would write
504 REPORTER_ASSERT(reporter, image0->uniqueID() != image3->uniqueID());
505 REPORTER_ASSERT(reporter, image2->uniqueID() != image3->uniqueID());
506}
507// No CPU test.
508DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceBackendHandleAccessIDs_Gpu, reporter, context) {
509 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
510 for (auto& test_func : { &test_backend_handle_unique_id, &test_backend_handle_gen_id }) {
511 for (auto& handle_access_func :
512 { &get_surface_backend_texture_handle, &get_surface_backend_render_target_handle}) {
513 SkAutoTUnref<SkSurface> surface(surface_func(context, kPremul_SkAlphaType,
514 nullptr));
515 test_func(reporter, surface, handle_access_func);
516 }
517 }
518 }
519}
520#endif
521
522// Verify that the right canvas commands trigger a copy on write.
523static void test_copy_on_write(skiatest::Reporter* reporter, SkSurface* surface) {
junov@chromium.org995beb62013-03-28 13:49:22 +0000524 SkCanvas* canvas = surface->getCanvas();
525
526 const SkRect testRect =
527 SkRect::MakeXYWH(SkIntToScalar(0), SkIntToScalar(0),
528 SkIntToScalar(4), SkIntToScalar(5));
junov@chromium.org995beb62013-03-28 13:49:22 +0000529 SkPath testPath;
530 testPath.addRect(SkRect::MakeXYWH(SkIntToScalar(0), SkIntToScalar(0),
531 SkIntToScalar(2), SkIntToScalar(1)));
532
533 const SkIRect testIRect = SkIRect::MakeXYWH(0, 0, 2, 1);
534
535 SkRegion testRegion;
536 testRegion.setRect(testIRect);
537
538
539 const SkColor testColor = 0x01020304;
540 const SkPaint testPaint;
541 const SkPoint testPoints[3] = {
542 {SkIntToScalar(0), SkIntToScalar(0)},
543 {SkIntToScalar(2), SkIntToScalar(1)},
544 {SkIntToScalar(0), SkIntToScalar(2)}
545 };
546 const size_t testPointCount = 3;
547
548 SkBitmap testBitmap;
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +0000549 testBitmap.allocN32Pixels(10, 10);
robertphillips@google.comd1ce77d2013-10-09 12:51:09 +0000550 testBitmap.eraseColor(0);
junov@chromium.org995beb62013-03-28 13:49:22 +0000551
552 SkRRect testRRect;
553 testRRect.setRectXY(testRect, SK_Scalar1, SK_Scalar1);
554
555 SkString testText("Hello World");
556 const SkPoint testPoints2[] = {
557 { SkIntToScalar(0), SkIntToScalar(1) },
558 { SkIntToScalar(1), SkIntToScalar(1) },
559 { SkIntToScalar(2), SkIntToScalar(1) },
560 { SkIntToScalar(3), SkIntToScalar(1) },
561 { SkIntToScalar(4), SkIntToScalar(1) },
562 { SkIntToScalar(5), SkIntToScalar(1) },
563 { SkIntToScalar(6), SkIntToScalar(1) },
564 { SkIntToScalar(7), SkIntToScalar(1) },
565 { SkIntToScalar(8), SkIntToScalar(1) },
566 { SkIntToScalar(9), SkIntToScalar(1) },
567 { SkIntToScalar(10), SkIntToScalar(1) },
568 };
569
570#define EXPECT_COPY_ON_WRITE(command) \
571 { \
junov@chromium.org5ee449a2013-04-12 20:20:50 +0000572 SkImage* imageBefore = surface->newImageSnapshot(); \
junov@chromium.org995beb62013-03-28 13:49:22 +0000573 SkAutoTUnref<SkImage> aur_before(imageBefore); \
574 canvas-> command ; \
junov@chromium.org5ee449a2013-04-12 20:20:50 +0000575 SkImage* imageAfter = surface->newImageSnapshot(); \
junov@chromium.org995beb62013-03-28 13:49:22 +0000576 SkAutoTUnref<SkImage> aur_after(imageAfter); \
577 REPORTER_ASSERT(reporter, imageBefore != imageAfter); \
578 }
579
580 EXPECT_COPY_ON_WRITE(clear(testColor))
581 EXPECT_COPY_ON_WRITE(drawPaint(testPaint))
582 EXPECT_COPY_ON_WRITE(drawPoints(SkCanvas::kPoints_PointMode, testPointCount, testPoints, \
583 testPaint))
584 EXPECT_COPY_ON_WRITE(drawOval(testRect, testPaint))
585 EXPECT_COPY_ON_WRITE(drawRect(testRect, testPaint))
586 EXPECT_COPY_ON_WRITE(drawRRect(testRRect, testPaint))
587 EXPECT_COPY_ON_WRITE(drawPath(testPath, testPaint))
588 EXPECT_COPY_ON_WRITE(drawBitmap(testBitmap, 0, 0))
reede47829b2015-08-06 10:02:53 -0700589 EXPECT_COPY_ON_WRITE(drawBitmapRect(testBitmap, testRect, nullptr))
halcanary96fcdcc2015-08-27 07:41:13 -0700590 EXPECT_COPY_ON_WRITE(drawBitmapNine(testBitmap, testIRect, testRect, nullptr))
junov@chromium.org995beb62013-03-28 13:49:22 +0000591 EXPECT_COPY_ON_WRITE(drawText(testText.c_str(), testText.size(), 0, 1, testPaint))
592 EXPECT_COPY_ON_WRITE(drawPosText(testText.c_str(), testText.size(), testPoints2, \
593 testPaint))
halcanary96fcdcc2015-08-27 07:41:13 -0700594 EXPECT_COPY_ON_WRITE(drawTextOnPath(testText.c_str(), testText.size(), testPath, nullptr, \
junov@chromium.org995beb62013-03-28 13:49:22 +0000595 testPaint))
kkinnunen179a8f52015-11-20 13:32:24 -0800596}
597DEF_TEST(SurfaceCopyOnWrite, reporter) {
598 SkAutoTUnref<SkSurface> surface(create_surface());
599 test_copy_on_write(reporter, surface);
600}
601#if SK_SUPPORT_GPU
602DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceCopyOnWrite_Gpu, reporter, context) {
603 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
604 SkAutoTUnref<SkSurface> surface(surface_func(context, kPremul_SkAlphaType, nullptr));
605 test_copy_on_write(reporter, surface);
fmalitae2639082015-08-06 07:04:51 -0700606 }
junov@chromium.org995beb62013-03-28 13:49:22 +0000607}
kkinnunen179a8f52015-11-20 13:32:24 -0800608#endif
junov@chromium.org995beb62013-03-28 13:49:22 +0000609
kkinnunen179a8f52015-11-20 13:32:24 -0800610static void test_writable_after_snapshot_release(skiatest::Reporter* reporter,
611 SkSurface* surface) {
junov@chromium.orgaf058352013-04-03 15:03:26 +0000612 // This test succeeds by not triggering an assertion.
613 // The test verifies that the surface remains writable (usable) after
614 // acquiring and releasing a snapshot without triggering a copy on write.
junov@chromium.orgaf058352013-04-03 15:03:26 +0000615 SkCanvas* canvas = surface->getCanvas();
616 canvas->clear(1);
junov@chromium.org5ee449a2013-04-12 20:20:50 +0000617 surface->newImageSnapshot()->unref(); // Create and destroy SkImage
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000618 canvas->clear(2); // Must not assert internally
junov@chromium.org995beb62013-03-28 13:49:22 +0000619}
kkinnunen179a8f52015-11-20 13:32:24 -0800620DEF_TEST(SurfaceWriteableAfterSnapshotRelease, reporter) {
621 SkAutoTUnref<SkSurface> surface(create_surface());
622 test_writable_after_snapshot_release(reporter, surface);
623}
624#if SK_SUPPORT_GPU
625DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceWriteableAfterSnapshotRelease_Gpu, reporter, context) {
626 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
627 SkAutoTUnref<SkSurface> surface(surface_func(context, kPremul_SkAlphaType, nullptr));
628 test_writable_after_snapshot_release(reporter, surface);
629 }
630}
631#endif
junov@chromium.orgda904742013-05-01 22:38:16 +0000632
junov@chromium.orgb516a412013-05-01 22:49:59 +0000633#if SK_SUPPORT_GPU
kkinnunen179a8f52015-11-20 13:32:24 -0800634static void test_crbug263329(skiatest::Reporter* reporter,
635 SkSurface* surface1,
636 SkSurface* surface2) {
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000637 // This is a regression test for crbug.com/263329
638 // Bug was caused by onCopyOnWrite releasing the old surface texture
639 // back to the scratch texture pool even though the texture is used
640 // by and active SkImage_Gpu.
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000641 SkCanvas* canvas1 = surface1->getCanvas();
642 SkCanvas* canvas2 = surface2->getCanvas();
643 canvas1->clear(1);
644 SkAutoTUnref<SkImage> image1(surface1->newImageSnapshot());
645 // Trigger copy on write, new backing is a scratch texture
646 canvas1->clear(2);
647 SkAutoTUnref<SkImage> image2(surface1->newImageSnapshot());
648 // Trigger copy on write, old backing should not be returned to scratch
649 // pool because it is held by image2
650 canvas1->clear(3);
651
652 canvas2->clear(4);
653 SkAutoTUnref<SkImage> image3(surface2->newImageSnapshot());
654 // Trigger copy on write on surface2. The new backing store should not
655 // be recycling a texture that is held by an existing image.
656 canvas2->clear(5);
657 SkAutoTUnref<SkImage> image4(surface2->newImageSnapshot());
bsalomon55812362015-06-10 08:49:28 -0700658 REPORTER_ASSERT(reporter, as_IB(image4)->getTexture() != as_IB(image3)->getTexture());
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000659 // The following assertion checks crbug.com/263329
bsalomon55812362015-06-10 08:49:28 -0700660 REPORTER_ASSERT(reporter, as_IB(image4)->getTexture() != as_IB(image2)->getTexture());
661 REPORTER_ASSERT(reporter, as_IB(image4)->getTexture() != as_IB(image1)->getTexture());
662 REPORTER_ASSERT(reporter, as_IB(image3)->getTexture() != as_IB(image2)->getTexture());
663 REPORTER_ASSERT(reporter, as_IB(image3)->getTexture() != as_IB(image1)->getTexture());
664 REPORTER_ASSERT(reporter, as_IB(image2)->getTexture() != as_IB(image1)->getTexture());
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000665}
kkinnunen179a8f52015-11-20 13:32:24 -0800666DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceCRBug263329_Gpu, reporter, context) {
667 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
668 SkAutoTUnref<SkSurface> surface1(surface_func(context, kPremul_SkAlphaType, nullptr));
669 SkAutoTUnref<SkSurface> surface2(surface_func(context, kPremul_SkAlphaType, nullptr));
670 test_crbug263329(reporter, surface1, surface2);
671 }
672}
673#endif
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000674
kkinnunen179a8f52015-11-20 13:32:24 -0800675DEF_TEST(SurfaceGetTexture, reporter) {
676 SkAutoTUnref<SkSurface> surface(create_surface());
junov@chromium.orgda904742013-05-01 22:38:16 +0000677 SkAutoTUnref<SkImage> image(surface->newImageSnapshot());
kkinnunen179a8f52015-11-20 13:32:24 -0800678 REPORTER_ASSERT(reporter, as_IB(image)->getTexture() == nullptr);
679 surface->notifyContentWillChange(SkSurface::kDiscard_ContentChangeMode);
680 REPORTER_ASSERT(reporter, as_IB(image)->getTexture() == nullptr);
681}
682#if SK_SUPPORT_GPU
683DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceGetTexture_Gpu, reporter, context) {
684 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
685 SkAutoTUnref<SkSurface> surface(surface_func(context, kPremul_SkAlphaType, nullptr));
686 SkAutoTUnref<SkImage> image(surface->newImageSnapshot());
687 GrTexture* texture = as_IB(image)->getTexture();
bsalomon49f085d2014-09-05 13:34:00 -0700688 REPORTER_ASSERT(reporter, texture);
junov@chromium.orgda904742013-05-01 22:38:16 +0000689 REPORTER_ASSERT(reporter, 0 != texture->getTextureHandle());
kkinnunen179a8f52015-11-20 13:32:24 -0800690 surface->notifyContentWillChange(SkSurface::kDiscard_ContentChangeMode);
691 REPORTER_ASSERT(reporter, as_IB(image)->getTexture() == texture);
junov@chromium.orgda904742013-05-01 22:38:16 +0000692 }
junov@chromium.orgda904742013-05-01 22:38:16 +0000693}
kkinnunen179a8f52015-11-20 13:32:24 -0800694#endif
bsalomoneaaaf0b2015-01-23 08:08:04 -0800695
kkinnunen179a8f52015-11-20 13:32:24 -0800696#if SK_SUPPORT_GPU
bsalomon3582d3e2015-02-13 14:20:05 -0800697#include "GrGpuResourcePriv.h"
bsalomoneaaaf0b2015-01-23 08:08:04 -0800698#include "SkGpuDevice.h"
699#include "SkImage_Gpu.h"
700#include "SkSurface_Gpu.h"
701
bsalomon5ec26ae2016-02-25 08:33:02 -0800702static SkBudgeted is_budgeted(SkSurface* surf) {
703 return ((SkSurface_Gpu*)surf)->getDevice()->accessRenderTarget()->resourcePriv().isBudgeted();
bsalomoneaaaf0b2015-01-23 08:08:04 -0800704}
705
bsalomon5ec26ae2016-02-25 08:33:02 -0800706static SkBudgeted is_budgeted(SkImage* image) {
707 return ((SkImage_Gpu*)image)->getTexture()->resourcePriv().isBudgeted();
bsalomoneaaaf0b2015-01-23 08:08:04 -0800708}
709
kkinnunen179a8f52015-11-20 13:32:24 -0800710DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceBudget, reporter, context) {
bsalomoneaaaf0b2015-01-23 08:08:04 -0800711 SkImageInfo info = SkImageInfo::MakeN32Premul(8,8);
bsalomon5ec26ae2016-02-25 08:33:02 -0800712 for (auto sbudgeted : { SkBudgeted::kNo, SkBudgeted::kYes }) {
713 for (auto ibudgeted : { SkBudgeted::kNo, SkBudgeted::kYes }) {
bsalomoneaaaf0b2015-01-23 08:08:04 -0800714 SkAutoTUnref<SkSurface>
715 surface(SkSurface::NewRenderTarget(context, sbudgeted, info, 0));
716 SkASSERT(surface);
717 REPORTER_ASSERT(reporter, sbudgeted == is_budgeted(surface));
718
mtklein31ff2982015-01-24 11:27:27 -0800719 SkAutoTUnref<SkImage> image(surface->newImageSnapshot(ibudgeted));
bsalomoneaaaf0b2015-01-23 08:08:04 -0800720
721 // Initially the image shares a texture with the surface, and the surface decides
722 // whether it is budgeted or not.
723 REPORTER_ASSERT(reporter, sbudgeted == is_budgeted(surface));
724 REPORTER_ASSERT(reporter, sbudgeted == is_budgeted(image));
725
726 // Now trigger copy-on-write
727 surface->getCanvas()->clear(SK_ColorBLUE);
728
729 // They don't share a texture anymore. They should each have made their own budget
730 // decision.
731 REPORTER_ASSERT(reporter, sbudgeted == is_budgeted(surface));
732 REPORTER_ASSERT(reporter, ibudgeted == is_budgeted(image));
733 }
734 }
735}
junov@chromium.orgb516a412013-05-01 22:49:59 +0000736#endif
junov@chromium.orgda904742013-05-01 22:38:16 +0000737
kkinnunen179a8f52015-11-20 13:32:24 -0800738static void test_no_canvas1(skiatest::Reporter* reporter,
739 SkSurface* surface,
740 SkSurface::ContentChangeMode mode) {
741 // Test passes by not asserting
742 surface->notifyContentWillChange(mode);
743 SkDEBUGCODE(surface->validate();)
744}
745static void test_no_canvas2(skiatest::Reporter* reporter,
746 SkSurface* surface,
747 SkSurface::ContentChangeMode mode) {
junov@chromium.orgacea3ef2013-04-16 19:41:09 +0000748 // Verifies the robustness of SkSurface for handling use cases where calls
749 // are made before a canvas is created.
kkinnunen179a8f52015-11-20 13:32:24 -0800750 SkImage* image1 = surface->newImageSnapshot();
751 SkAutoTUnref<SkImage> aur_image1(image1);
752 SkDEBUGCODE(image1->validate();)
753 SkDEBUGCODE(surface->validate();)
754 surface->notifyContentWillChange(mode);
755 SkDEBUGCODE(image1->validate();)
756 SkDEBUGCODE(surface->validate();)
757 SkImage* image2 = surface->newImageSnapshot();
758 SkAutoTUnref<SkImage> aur_image2(image2);
759 SkDEBUGCODE(image2->validate();)
760 SkDEBUGCODE(surface->validate();)
761 REPORTER_ASSERT(reporter, image1 != image2);
junov@chromium.orgacea3ef2013-04-16 19:41:09 +0000762}
kkinnunen179a8f52015-11-20 13:32:24 -0800763DEF_TEST(SurfaceNoCanvas, reporter) {
764 SkSurface::ContentChangeMode modes[] =
765 { SkSurface::kDiscard_ContentChangeMode, SkSurface::kRetain_ContentChangeMode};
766 for (auto& test_func : { &test_no_canvas1, &test_no_canvas2 }) {
767 for (auto& mode : modes) {
768 SkAutoTUnref<SkSurface> surface(create_surface());
769 test_func(reporter, surface, mode);
770 }
771 }
772}
junov@chromium.orgb516a412013-05-01 22:49:59 +0000773#if SK_SUPPORT_GPU
kkinnunen179a8f52015-11-20 13:32:24 -0800774DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceNoCanvas_Gpu, reporter, context) {
775 SkSurface::ContentChangeMode modes[] =
776 { SkSurface::kDiscard_ContentChangeMode, SkSurface::kRetain_ContentChangeMode};
777 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
778 for (auto& test_func : { &test_no_canvas1, &test_no_canvas2 }) {
779 for (auto& mode : modes) {
780 SkAutoTUnref<SkSurface> surface(
781 surface_func(context, kPremul_SkAlphaType, nullptr));
782 test_func(reporter, surface, mode);
bsalomone904c092014-07-17 10:50:59 -0700783 }
robertphillips@google.com3bddb382013-11-12 13:51:03 +0000784 }
junov@chromium.orgaf058352013-04-03 15:03:26 +0000785 }
junov@chromium.org995beb62013-03-28 13:49:22 +0000786}
kkinnunen179a8f52015-11-20 13:32:24 -0800787#endif
reed9cd016e2016-01-30 10:01:06 -0800788
789static void check_rowbytes_remain_consistent(SkSurface* surface, skiatest::Reporter* reporter) {
790 SkImageInfo info;
791 size_t rowBytes;
792 REPORTER_ASSERT(reporter, surface->peekPixels(&info, &rowBytes));
793
794 SkAutoTUnref<SkImage> image(surface->newImageSnapshot());
795 SkImageInfo im_info;
796 size_t im_rowbytes;
797 REPORTER_ASSERT(reporter, image->peekPixels(&im_info, &im_rowbytes));
798
799 REPORTER_ASSERT(reporter, rowBytes == im_rowbytes);
800
801 // trigger a copy-on-write
802 surface->getCanvas()->drawPaint(SkPaint());
803 SkAutoTUnref<SkImage> image2(surface->newImageSnapshot());
804 REPORTER_ASSERT(reporter, image->uniqueID() != image2->uniqueID());
805
806 SkImageInfo im_info2;
807 size_t im_rowbytes2;
808 REPORTER_ASSERT(reporter, image2->peekPixels(&im_info2, &im_rowbytes2));
809
810 REPORTER_ASSERT(reporter, im_rowbytes2 == im_rowbytes);
811}
812
813DEF_TEST(surface_rowbytes, reporter) {
814 const SkImageInfo info = SkImageInfo::MakeN32Premul(100, 100);
815
816 SkAutoTUnref<SkSurface> surf0(SkSurface::NewRaster(info));
817 check_rowbytes_remain_consistent(surf0, reporter);
818
819 // specify a larger rowbytes
820 SkAutoTUnref<SkSurface> surf1(SkSurface::NewRaster(info, 500, nullptr));
821 check_rowbytes_remain_consistent(surf1, reporter);
822
823 // Try some illegal rowByte values
824 SkSurface* s = SkSurface::NewRaster(info, 396, nullptr); // needs to be at least 400
825 REPORTER_ASSERT(reporter, nullptr == s);
826 s = SkSurface::NewRaster(info, 1 << 30, nullptr); // allocation to large
827 REPORTER_ASSERT(reporter, nullptr == s);
828}
bsalomone63ffef2016-02-05 07:17:34 -0800829
830#if SK_SUPPORT_GPU
831
bsalomon2fba8092016-02-05 13:47:06 -0800832void test_surface_clear(skiatest::Reporter* reporter, SkSurface* surfacePtr,
bsalomone63ffef2016-02-05 07:17:34 -0800833 std::function<GrSurface*(SkSurface*)> grSurfaceGetter,
834 uint32_t expectedValue) {
bsalomon2fba8092016-02-05 13:47:06 -0800835 SkAutoTUnref<SkSurface> surface(surfacePtr);
bsalomone63ffef2016-02-05 07:17:34 -0800836 if (!surface) {
837 ERRORF(reporter, "Could not create GPU SkSurface.");
838 return;
839 }
840 int w = surface->width();
841 int h = surface->height();
842 SkAutoTDeleteArray<uint32_t> pixels(new uint32_t[w * h]);
843 memset(pixels.get(), ~expectedValue, sizeof(uint32_t) * w * h);
844
845 SkAutoTUnref<GrSurface> grSurface(SkSafeRef(grSurfaceGetter(surface)));
846 if (!grSurface) {
847 ERRORF(reporter, "Could access render target of GPU SkSurface.");
848 return;
849 }
850 SkASSERT(surface->unique());
bsalomon2fba8092016-02-05 13:47:06 -0800851 surface.reset();
bsalomone63ffef2016-02-05 07:17:34 -0800852 grSurface->readPixels(0, 0, w, h, kRGBA_8888_GrPixelConfig, pixels.get());
853 for (int y = 0; y < h; ++y) {
854 for (int x = 0; x < w; ++x) {
855 uint32_t pixel = pixels.get()[y * w + x];
856 if (pixel != expectedValue) {
857 SkString msg;
858 if (expectedValue) {
859 msg = "SkSurface should have left render target unmodified";
860 } else {
861 msg = "SkSurface should have cleared the render target";
862 }
863 ERRORF(reporter,
864 "%s but read 0x%08x (instead of 0x%08x) at %x,%d", msg.c_str(), pixel,
865 expectedValue, x, y);
866 return;
867 }
868 }
869 }
870}
871
872DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceClear_Gpu, reporter, context) {
873 std::function<GrSurface*(SkSurface*)> grSurfaceGetters[] = {
bsalomon2fba8092016-02-05 13:47:06 -0800874 [] (SkSurface* s){ return s->getCanvas()->internal_private_accessTopLayerRenderTarget(); },
bsalomone63ffef2016-02-05 07:17:34 -0800875 [] (SkSurface* s){
876 SkBaseDevice* d =
877 s->getCanvas()->getDevice_just_for_deprecated_compatibility_testing();
878 return d->accessRenderTarget(); },
bsalomon2fba8092016-02-05 13:47:06 -0800879 [] (SkSurface* s){ SkAutoTUnref<SkImage> i(s->newImageSnapshot());
bsalomone63ffef2016-02-05 07:17:34 -0800880 return i->getTexture(); },
bsalomon2fba8092016-02-05 13:47:06 -0800881 [] (SkSurface* s){ SkAutoTUnref<SkImage> i(s->newImageSnapshot());
bsalomone63ffef2016-02-05 07:17:34 -0800882 return as_IB(i)->peekTexture(); },
883 };
884 for (auto grSurfaceGetter : grSurfaceGetters) {
885 for (auto& surface_func : {&create_gpu_surface, &create_gpu_scratch_surface}) {
bsalomon2fba8092016-02-05 13:47:06 -0800886 SkSurface* surface = surface_func(context, kPremul_SkAlphaType, nullptr);
bsalomone63ffef2016-02-05 07:17:34 -0800887 test_surface_clear(reporter, surface, grSurfaceGetter, 0x0);
888 }
889 // Wrapped RTs are *not* supposed to clear (to allow client to partially update a surface).
890 static const int kWidth = 10;
891 static const int kHeight = 10;
892 SkAutoTDeleteArray<uint32_t> pixels(new uint32_t[kWidth * kHeight]);
893 memset(pixels.get(), 0xAB, sizeof(uint32_t) * kWidth * kHeight);
894
895 GrBackendObject textureObject =
896 context->getGpu()->createTestingOnlyBackendTexture(pixels.get(), kWidth, kHeight,
897 kRGBA_8888_GrPixelConfig);
898
899 GrBackendTextureDesc desc;
900 desc.fConfig = kRGBA_8888_GrPixelConfig;
901 desc.fWidth = kWidth;
902 desc.fHeight = kHeight;
903 desc.fFlags = kRenderTarget_GrBackendTextureFlag;
904 desc.fTextureHandle = textureObject;
905
906 SkSurface* surface = SkSurface::NewFromBackendTexture(context, desc, nullptr);
907 test_surface_clear(reporter, surface, grSurfaceGetter, 0xABABABAB);
908 context->getGpu()->deleteTestingOnlyBackendTexture(textureObject);
909 }
910}
911#endif