blob: b85ac817886e6f2571302749f41925d459ca9649 [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"
brianosman0e22eb82016-08-30 07:07:59 -070010#include "SkColorSpace_Base.h"
reed@google.com4f7c6152014-02-06 14:11:56 +000011#include "SkData.h"
Mike Reed986480a2017-01-13 22:43:16 +000012#include "SkDevice.h"
bsalomon55812362015-06-10 08:49:28 -070013#include "SkImage_Base.h"
Matt Sarette11b6142016-11-28 18:28:07 -050014#include "SkOverdrawCanvas.h"
bungemand3ebb482015-08-05 13:57:49 -070015#include "SkPath.h"
Mike Reed267be7f2017-02-13 09:32:54 -050016#include "SkRegion.h"
junov@chromium.org995beb62013-03-28 13:49:22 +000017#include "SkRRect.h"
18#include "SkSurface.h"
reed@google.com4f7c6152014-02-06 14:11:56 +000019#include "SkUtils.h"
junov@chromium.org995beb62013-03-28 13:49:22 +000020#include "Test.h"
21
22#if SK_SUPPORT_GPU
kkinnunen179a8f52015-11-20 13:32:24 -080023#include "GrContext.h"
Robert Phillips2c862492017-01-18 10:08:39 -050024#include "GrContextPriv.h"
Brian Osman11052242016-10-27 14:47:55 -040025#include "GrRenderTargetContext.h"
kkinnunen179a8f52015-11-20 13:32:24 -080026#include "GrGpu.h"
ericrkc4025182016-05-04 12:01:58 -070027#include "GrResourceProvider.h"
brianosman0e22eb82016-08-30 07:07:59 -070028#include <vector>
junov@chromium.org995beb62013-03-28 13:49:22 +000029#endif
30
kkinnunen179a8f52015-11-20 13:32:24 -080031#include <initializer_list>
bsalomon74f681d2015-06-23 14:38:48 -070032
kkinnunen179a8f52015-11-20 13:32:24 -080033static void release_direct_surface_storage(void* pixels, void* context) {
reed982542d2014-06-27 06:48:14 -070034 SkASSERT(pixels == context);
35 sk_free(pixels);
36}
reede8f30622016-03-23 18:59:25 -070037static sk_sp<SkSurface> create_surface(SkAlphaType at = kPremul_SkAlphaType,
38 SkImageInfo* requestedInfo = nullptr) {
bsalomon74f681d2015-06-23 14:38:48 -070039 const SkImageInfo info = SkImageInfo::MakeN32(10, 10, at);
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +000040 if (requestedInfo) {
41 *requestedInfo = info;
42 }
reede8f30622016-03-23 18:59:25 -070043 return SkSurface::MakeRaster(info);
junov@chromium.org995beb62013-03-28 13:49:22 +000044}
reede8f30622016-03-23 18:59:25 -070045static sk_sp<SkSurface> create_direct_surface(SkAlphaType at = kPremul_SkAlphaType,
46 SkImageInfo* requestedInfo = nullptr) {
kkinnunen179a8f52015-11-20 13:32:24 -080047 const SkImageInfo info = SkImageInfo::MakeN32(10, 10, at);
48 if (requestedInfo) {
49 *requestedInfo = info;
50 }
51 const size_t rowBytes = info.minRowBytes();
52 void* storage = sk_malloc_throw(info.getSafeSize(rowBytes));
reede8f30622016-03-23 18:59:25 -070053 return SkSurface::MakeRasterDirectReleaseProc(info, storage, rowBytes,
54 release_direct_surface_storage,
55 storage);
kkinnunen179a8f52015-11-20 13:32:24 -080056}
57#if SK_SUPPORT_GPU
reede8f30622016-03-23 18:59:25 -070058static sk_sp<SkSurface> create_gpu_surface(GrContext* context, SkAlphaType at = kPremul_SkAlphaType,
59 SkImageInfo* requestedInfo = nullptr) {
kkinnunen179a8f52015-11-20 13:32:24 -080060 const SkImageInfo info = SkImageInfo::MakeN32(10, 10, at);
61 if (requestedInfo) {
62 *requestedInfo = info;
63 }
robertphillips7e922762016-07-26 11:38:17 -070064 return SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, info);
kkinnunen179a8f52015-11-20 13:32:24 -080065}
reede8f30622016-03-23 18:59:25 -070066static sk_sp<SkSurface> create_gpu_scratch_surface(GrContext* context,
67 SkAlphaType at = kPremul_SkAlphaType,
68 SkImageInfo* requestedInfo = nullptr) {
kkinnunen179a8f52015-11-20 13:32:24 -080069 const SkImageInfo info = SkImageInfo::MakeN32(10, 10, at);
70 if (requestedInfo) {
71 *requestedInfo = info;
72 }
robertphillips7e922762016-07-26 11:38:17 -070073 return SkSurface::MakeRenderTarget(context, SkBudgeted::kYes, info);
kkinnunen179a8f52015-11-20 13:32:24 -080074}
75#endif
junov@chromium.org995beb62013-03-28 13:49:22 +000076
kkinnunen179a8f52015-11-20 13:32:24 -080077DEF_TEST(SurfaceEmpty, reporter) {
reedb2497c22014-12-31 12:31:43 -080078 const SkImageInfo info = SkImageInfo::Make(0, 0, kN32_SkColorType, kPremul_SkAlphaType);
reede8f30622016-03-23 18:59:25 -070079 REPORTER_ASSERT(reporter, nullptr == SkSurface::MakeRaster(info));
80 REPORTER_ASSERT(reporter, nullptr == SkSurface::MakeRasterDirect(info, nullptr, 0));
kkinnunen179a8f52015-11-20 13:32:24 -080081
reedb2497c22014-12-31 12:31:43 -080082}
kkinnunen179a8f52015-11-20 13:32:24 -080083#if SK_SUPPORT_GPU
egdanielab527a52016-06-28 08:07:26 -070084DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceEmpty_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -080085 const SkImageInfo info = SkImageInfo::Make(0, 0, kN32_SkColorType, kPremul_SkAlphaType);
86 REPORTER_ASSERT(reporter, nullptr ==
robertphillips7e922762016-07-26 11:38:17 -070087 SkSurface::MakeRenderTarget(ctxInfo.grContext(), SkBudgeted::kNo, info));
kkinnunen179a8f52015-11-20 13:32:24 -080088}
89#endif
reedb2497c22014-12-31 12:31:43 -080090
kkinnunen179a8f52015-11-20 13:32:24 -080091static void test_canvas_peek(skiatest::Reporter* reporter,
reede8f30622016-03-23 18:59:25 -070092 sk_sp<SkSurface>& surface,
kkinnunen179a8f52015-11-20 13:32:24 -080093 const SkImageInfo& requestInfo,
94 bool expectPeekSuccess) {
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +000095 const SkColor color = SK_ColorRED;
96 const SkPMColor pmcolor = SkPreMultiplyColor(color);
kkinnunen179a8f52015-11-20 13:32:24 -080097 surface->getCanvas()->clear(color);
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +000098
reed6ceeebd2016-03-09 14:26:26 -080099 SkPixmap pmap;
100 bool success = surface->getCanvas()->peekPixels(&pmap);
kkinnunen179a8f52015-11-20 13:32:24 -0800101 REPORTER_ASSERT(reporter, expectPeekSuccess == success);
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000102
reed6ceeebd2016-03-09 14:26:26 -0800103 SkPixmap pmap2;
104 const void* addr2 = surface->peekPixels(&pmap2) ? pmap2.addr() : nullptr;
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000105
kkinnunen179a8f52015-11-20 13:32:24 -0800106 if (success) {
reed6ceeebd2016-03-09 14:26:26 -0800107 REPORTER_ASSERT(reporter, requestInfo == pmap.info());
108 REPORTER_ASSERT(reporter, requestInfo.minRowBytes() <= pmap.rowBytes());
109 REPORTER_ASSERT(reporter, pmcolor == *pmap.addr32());
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000110
reed6ceeebd2016-03-09 14:26:26 -0800111 REPORTER_ASSERT(reporter, pmap.addr() == pmap2.addr());
112 REPORTER_ASSERT(reporter, pmap.info() == pmap2.info());
113 REPORTER_ASSERT(reporter, pmap.rowBytes() == pmap2.rowBytes());
kkinnunen179a8f52015-11-20 13:32:24 -0800114 } else {
115 REPORTER_ASSERT(reporter, nullptr == addr2);
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000116 }
117}
kkinnunen179a8f52015-11-20 13:32:24 -0800118DEF_TEST(SurfaceCanvasPeek, reporter) {
119 for (auto& surface_func : { &create_surface, &create_direct_surface }) {
120 SkImageInfo requestInfo;
reede8f30622016-03-23 18:59:25 -0700121 auto surface(surface_func(kPremul_SkAlphaType, &requestInfo));
kkinnunen179a8f52015-11-20 13:32:24 -0800122 test_canvas_peek(reporter, surface, requestInfo, true);
123 }
124}
125#if SK_SUPPORT_GPU
egdanielab527a52016-06-28 08:07:26 -0700126DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceCanvasPeek_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800127 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
128 SkImageInfo requestInfo;
bsalomon8b7451a2016-05-11 06:33:06 -0700129 auto surface(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, &requestInfo));
kkinnunen179a8f52015-11-20 13:32:24 -0800130 test_canvas_peek(reporter, surface, requestInfo, false);
131 }
132}
133#endif
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000134
reede8f30622016-03-23 18:59:25 -0700135static void test_snapshot_alphatype(skiatest::Reporter* reporter, const sk_sp<SkSurface>& surface,
brianosman69c166d2016-08-17 14:01:05 -0700136 SkAlphaType expectedAlphaType) {
kkinnunen179a8f52015-11-20 13:32:24 -0800137 REPORTER_ASSERT(reporter, surface);
138 if (surface) {
reed9ce9d672016-03-17 10:51:11 -0700139 sk_sp<SkImage> image(surface->makeImageSnapshot());
kkinnunen179a8f52015-11-20 13:32:24 -0800140 REPORTER_ASSERT(reporter, image);
141 if (image) {
brianosman69c166d2016-08-17 14:01:05 -0700142 REPORTER_ASSERT(reporter, image->alphaType() == expectedAlphaType);
reed41e010c2015-06-09 12:16:53 -0700143 }
144 }
145}
kkinnunen179a8f52015-11-20 13:32:24 -0800146DEF_TEST(SurfaceSnapshotAlphaType, reporter) {
147 for (auto& surface_func : { &create_surface, &create_direct_surface }) {
brianosman69c166d2016-08-17 14:01:05 -0700148 for (auto& at: { kOpaque_SkAlphaType, kPremul_SkAlphaType, kUnpremul_SkAlphaType }) {
149 auto surface(surface_func(at, nullptr));
150 test_snapshot_alphatype(reporter, surface, at);
bsalomon74f681d2015-06-23 14:38:48 -0700151 }
152 }
153}
kkinnunen179a8f52015-11-20 13:32:24 -0800154#if SK_SUPPORT_GPU
egdanielab527a52016-06-28 08:07:26 -0700155DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceSnapshotAlphaType_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800156 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
brianosman69c166d2016-08-17 14:01:05 -0700157 // GPU doesn't support creating unpremul surfaces, so only test opaque + premul
158 for (auto& at : { kOpaque_SkAlphaType, kPremul_SkAlphaType }) {
159 auto surface(surface_func(ctxInfo.grContext(), at, nullptr));
160 test_snapshot_alphatype(reporter, surface, at);
kkinnunen179a8f52015-11-20 13:32:24 -0800161 }
162 }
163}
164#endif
bsalomon74f681d2015-06-23 14:38:48 -0700165
kkinnunen179a8f52015-11-20 13:32:24 -0800166static GrBackendObject get_surface_backend_texture_handle(
167 SkSurface* s, SkSurface::BackendHandleAccess a) {
168 return s->getTextureHandle(a);
169}
170static GrBackendObject get_surface_backend_render_target_handle(
171 SkSurface* s, SkSurface::BackendHandleAccess a) {
172 GrBackendObject result;
173 if (!s->getRenderTargetHandle(&result, a)) {
174 return 0;
175 }
176 return result;
177}
178
179static void test_backend_handle_access_copy_on_write(
180 skiatest::Reporter* reporter, SkSurface* surface, SkSurface::BackendHandleAccess mode,
181 GrBackendObject (*func)(SkSurface*, SkSurface::BackendHandleAccess)) {
fmalitae2639082015-08-06 07:04:51 -0700182 GrBackendObject obj1 = func(surface, mode);
reed9ce9d672016-03-17 10:51:11 -0700183 sk_sp<SkImage> snap1(surface->makeImageSnapshot());
fmalitae2639082015-08-06 07:04:51 -0700184
185 GrBackendObject obj2 = func(surface, mode);
reed9ce9d672016-03-17 10:51:11 -0700186 sk_sp<SkImage> snap2(surface->makeImageSnapshot());
fmalitae2639082015-08-06 07:04:51 -0700187
188 // If the access mode triggers CoW, then the backend objects should reflect it.
189 REPORTER_ASSERT(reporter, (obj1 == obj2) == (snap1 == snap2));
190}
kkinnunen179a8f52015-11-20 13:32:24 -0800191DEF_TEST(SurfaceBackendHandleAccessCopyOnWrite, reporter) {
192 const SkSurface::BackendHandleAccess accessModes[] = {
193 SkSurface::kFlushRead_BackendHandleAccess,
194 SkSurface::kFlushWrite_BackendHandleAccess,
195 SkSurface::kDiscardWrite_BackendHandleAccess,
196 };
197 for (auto& handle_access_func :
198 { &get_surface_backend_texture_handle, &get_surface_backend_render_target_handle }) {
199 for (auto& accessMode : accessModes) {
reede8f30622016-03-23 18:59:25 -0700200 auto surface(create_surface());
201 test_backend_handle_access_copy_on_write(reporter, surface.get(), accessMode,
kkinnunen179a8f52015-11-20 13:32:24 -0800202 handle_access_func);
203 }
204 }
205}
206#if SK_SUPPORT_GPU
bsalomon68d91342016-04-12 09:59:58 -0700207DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceBackendHandleAccessCopyOnWrite_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800208 const SkSurface::BackendHandleAccess accessModes[] = {
209 SkSurface::kFlushRead_BackendHandleAccess,
210 SkSurface::kFlushWrite_BackendHandleAccess,
211 SkSurface::kDiscardWrite_BackendHandleAccess,
212 };
213 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
214 for (auto& handle_access_func :
215 { &get_surface_backend_texture_handle, &get_surface_backend_render_target_handle }) {
216 for (auto& accessMode : accessModes) {
bsalomon8b7451a2016-05-11 06:33:06 -0700217 auto surface(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
reede8f30622016-03-23 18:59:25 -0700218 test_backend_handle_access_copy_on_write(reporter, surface.get(), accessMode,
kkinnunen179a8f52015-11-20 13:32:24 -0800219 handle_access_func);
220 }
221 }
222 }
223}
224#endif
fmalitae2639082015-08-06 07:04:51 -0700225
kkinnunen179a8f52015-11-20 13:32:24 -0800226#if SK_SUPPORT_GPU
kkinnunen179a8f52015-11-20 13:32:24 -0800227
kkinnunen179a8f52015-11-20 13:32:24 -0800228static void test_backend_handle_unique_id(
229 skiatest::Reporter* reporter, SkSurface* surface,
230 GrBackendObject (*func)(SkSurface*, SkSurface::BackendHandleAccess)) {
reed9ce9d672016-03-17 10:51:11 -0700231 sk_sp<SkImage> image0(surface->makeImageSnapshot());
kkinnunen179a8f52015-11-20 13:32:24 -0800232 GrBackendObject obj = func(surface, SkSurface::kFlushRead_BackendHandleAccess);
233 REPORTER_ASSERT(reporter, obj != 0);
reed9ce9d672016-03-17 10:51:11 -0700234 sk_sp<SkImage> image1(surface->makeImageSnapshot());
kkinnunen179a8f52015-11-20 13:32:24 -0800235 // just read access should not affect the snapshot
236 REPORTER_ASSERT(reporter, image0->uniqueID() == image1->uniqueID());
237
238 obj = func(surface, SkSurface::kFlushWrite_BackendHandleAccess);
239 REPORTER_ASSERT(reporter, obj != 0);
reed9ce9d672016-03-17 10:51:11 -0700240 sk_sp<SkImage> image2(surface->makeImageSnapshot());
kkinnunen179a8f52015-11-20 13:32:24 -0800241 // expect a new image, since we claimed we would write
242 REPORTER_ASSERT(reporter, image0->uniqueID() != image2->uniqueID());
243
244 obj = func(surface, SkSurface::kDiscardWrite_BackendHandleAccess);
245 REPORTER_ASSERT(reporter, obj != 0);
reed9ce9d672016-03-17 10:51:11 -0700246 sk_sp<SkImage> image3(surface->makeImageSnapshot());
kkinnunen179a8f52015-11-20 13:32:24 -0800247 // expect a new(er) image, since we claimed we would write
248 REPORTER_ASSERT(reporter, image0->uniqueID() != image3->uniqueID());
249 REPORTER_ASSERT(reporter, image2->uniqueID() != image3->uniqueID());
250}
251// No CPU test.
bsalomon68d91342016-04-12 09:59:58 -0700252DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceBackendHandleAccessIDs_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800253 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
robertphillips1f3923e2016-07-21 07:17:54 -0700254 for (auto& test_func : { &test_backend_handle_unique_id }) {
kkinnunen179a8f52015-11-20 13:32:24 -0800255 for (auto& handle_access_func :
256 { &get_surface_backend_texture_handle, &get_surface_backend_render_target_handle}) {
bsalomon8b7451a2016-05-11 06:33:06 -0700257 auto surface(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
reede8f30622016-03-23 18:59:25 -0700258 test_func(reporter, surface.get(), handle_access_func);
kkinnunen179a8f52015-11-20 13:32:24 -0800259 }
260 }
261 }
262}
263#endif
264
265// Verify that the right canvas commands trigger a copy on write.
266static void test_copy_on_write(skiatest::Reporter* reporter, SkSurface* surface) {
junov@chromium.org995beb62013-03-28 13:49:22 +0000267 SkCanvas* canvas = surface->getCanvas();
268
269 const SkRect testRect =
270 SkRect::MakeXYWH(SkIntToScalar(0), SkIntToScalar(0),
271 SkIntToScalar(4), SkIntToScalar(5));
junov@chromium.org995beb62013-03-28 13:49:22 +0000272 SkPath testPath;
273 testPath.addRect(SkRect::MakeXYWH(SkIntToScalar(0), SkIntToScalar(0),
274 SkIntToScalar(2), SkIntToScalar(1)));
275
276 const SkIRect testIRect = SkIRect::MakeXYWH(0, 0, 2, 1);
277
278 SkRegion testRegion;
279 testRegion.setRect(testIRect);
280
281
282 const SkColor testColor = 0x01020304;
283 const SkPaint testPaint;
284 const SkPoint testPoints[3] = {
285 {SkIntToScalar(0), SkIntToScalar(0)},
286 {SkIntToScalar(2), SkIntToScalar(1)},
287 {SkIntToScalar(0), SkIntToScalar(2)}
288 };
289 const size_t testPointCount = 3;
290
291 SkBitmap testBitmap;
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +0000292 testBitmap.allocN32Pixels(10, 10);
robertphillips@google.comd1ce77d2013-10-09 12:51:09 +0000293 testBitmap.eraseColor(0);
junov@chromium.org995beb62013-03-28 13:49:22 +0000294
295 SkRRect testRRect;
296 testRRect.setRectXY(testRect, SK_Scalar1, SK_Scalar1);
297
298 SkString testText("Hello World");
299 const SkPoint testPoints2[] = {
300 { SkIntToScalar(0), SkIntToScalar(1) },
301 { SkIntToScalar(1), SkIntToScalar(1) },
302 { SkIntToScalar(2), SkIntToScalar(1) },
303 { SkIntToScalar(3), SkIntToScalar(1) },
304 { SkIntToScalar(4), SkIntToScalar(1) },
305 { SkIntToScalar(5), SkIntToScalar(1) },
306 { SkIntToScalar(6), SkIntToScalar(1) },
307 { SkIntToScalar(7), SkIntToScalar(1) },
308 { SkIntToScalar(8), SkIntToScalar(1) },
309 { SkIntToScalar(9), SkIntToScalar(1) },
310 { SkIntToScalar(10), SkIntToScalar(1) },
311 };
312
313#define EXPECT_COPY_ON_WRITE(command) \
314 { \
reed9ce9d672016-03-17 10:51:11 -0700315 sk_sp<SkImage> imageBefore = surface->makeImageSnapshot(); \
316 sk_sp<SkImage> aur_before(imageBefore); \
junov@chromium.org995beb62013-03-28 13:49:22 +0000317 canvas-> command ; \
reed9ce9d672016-03-17 10:51:11 -0700318 sk_sp<SkImage> imageAfter = surface->makeImageSnapshot(); \
319 sk_sp<SkImage> aur_after(imageAfter); \
junov@chromium.org995beb62013-03-28 13:49:22 +0000320 REPORTER_ASSERT(reporter, imageBefore != imageAfter); \
321 }
322
323 EXPECT_COPY_ON_WRITE(clear(testColor))
324 EXPECT_COPY_ON_WRITE(drawPaint(testPaint))
325 EXPECT_COPY_ON_WRITE(drawPoints(SkCanvas::kPoints_PointMode, testPointCount, testPoints, \
326 testPaint))
327 EXPECT_COPY_ON_WRITE(drawOval(testRect, testPaint))
328 EXPECT_COPY_ON_WRITE(drawRect(testRect, testPaint))
329 EXPECT_COPY_ON_WRITE(drawRRect(testRRect, testPaint))
330 EXPECT_COPY_ON_WRITE(drawPath(testPath, testPaint))
331 EXPECT_COPY_ON_WRITE(drawBitmap(testBitmap, 0, 0))
reede47829b2015-08-06 10:02:53 -0700332 EXPECT_COPY_ON_WRITE(drawBitmapRect(testBitmap, testRect, nullptr))
halcanary96fcdcc2015-08-27 07:41:13 -0700333 EXPECT_COPY_ON_WRITE(drawBitmapNine(testBitmap, testIRect, testRect, nullptr))
junov@chromium.org995beb62013-03-28 13:49:22 +0000334 EXPECT_COPY_ON_WRITE(drawText(testText.c_str(), testText.size(), 0, 1, testPaint))
335 EXPECT_COPY_ON_WRITE(drawPosText(testText.c_str(), testText.size(), testPoints2, \
336 testPaint))
halcanary96fcdcc2015-08-27 07:41:13 -0700337 EXPECT_COPY_ON_WRITE(drawTextOnPath(testText.c_str(), testText.size(), testPath, nullptr, \
junov@chromium.org995beb62013-03-28 13:49:22 +0000338 testPaint))
kkinnunen179a8f52015-11-20 13:32:24 -0800339}
340DEF_TEST(SurfaceCopyOnWrite, reporter) {
reede8f30622016-03-23 18:59:25 -0700341 test_copy_on_write(reporter, create_surface().get());
kkinnunen179a8f52015-11-20 13:32:24 -0800342}
343#if SK_SUPPORT_GPU
egdanielab527a52016-06-28 08:07:26 -0700344DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceCopyOnWrite_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800345 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
bsalomon8b7451a2016-05-11 06:33:06 -0700346 auto surface(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
reede8f30622016-03-23 18:59:25 -0700347 test_copy_on_write(reporter, surface.get());
fmalitae2639082015-08-06 07:04:51 -0700348 }
junov@chromium.org995beb62013-03-28 13:49:22 +0000349}
kkinnunen179a8f52015-11-20 13:32:24 -0800350#endif
junov@chromium.org995beb62013-03-28 13:49:22 +0000351
kkinnunen179a8f52015-11-20 13:32:24 -0800352static void test_writable_after_snapshot_release(skiatest::Reporter* reporter,
353 SkSurface* surface) {
junov@chromium.orgaf058352013-04-03 15:03:26 +0000354 // This test succeeds by not triggering an assertion.
355 // The test verifies that the surface remains writable (usable) after
356 // acquiring and releasing a snapshot without triggering a copy on write.
junov@chromium.orgaf058352013-04-03 15:03:26 +0000357 SkCanvas* canvas = surface->getCanvas();
358 canvas->clear(1);
reed9ce9d672016-03-17 10:51:11 -0700359 surface->makeImageSnapshot(); // Create and destroy SkImage
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000360 canvas->clear(2); // Must not assert internally
junov@chromium.org995beb62013-03-28 13:49:22 +0000361}
kkinnunen179a8f52015-11-20 13:32:24 -0800362DEF_TEST(SurfaceWriteableAfterSnapshotRelease, reporter) {
reede8f30622016-03-23 18:59:25 -0700363 test_writable_after_snapshot_release(reporter, create_surface().get());
kkinnunen179a8f52015-11-20 13:32:24 -0800364}
365#if SK_SUPPORT_GPU
egdanielab527a52016-06-28 08:07:26 -0700366DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceWriteableAfterSnapshotRelease_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800367 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
bsalomon8b7451a2016-05-11 06:33:06 -0700368 auto surface(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
reede8f30622016-03-23 18:59:25 -0700369 test_writable_after_snapshot_release(reporter, surface.get());
kkinnunen179a8f52015-11-20 13:32:24 -0800370 }
371}
372#endif
junov@chromium.orgda904742013-05-01 22:38:16 +0000373
junov@chromium.orgb516a412013-05-01 22:49:59 +0000374#if SK_SUPPORT_GPU
kkinnunen179a8f52015-11-20 13:32:24 -0800375static void test_crbug263329(skiatest::Reporter* reporter,
376 SkSurface* surface1,
377 SkSurface* surface2) {
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000378 // This is a regression test for crbug.com/263329
379 // Bug was caused by onCopyOnWrite releasing the old surface texture
380 // back to the scratch texture pool even though the texture is used
381 // by and active SkImage_Gpu.
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000382 SkCanvas* canvas1 = surface1->getCanvas();
383 SkCanvas* canvas2 = surface2->getCanvas();
384 canvas1->clear(1);
reed9ce9d672016-03-17 10:51:11 -0700385 sk_sp<SkImage> image1(surface1->makeImageSnapshot());
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000386 // Trigger copy on write, new backing is a scratch texture
387 canvas1->clear(2);
reed9ce9d672016-03-17 10:51:11 -0700388 sk_sp<SkImage> image2(surface1->makeImageSnapshot());
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000389 // Trigger copy on write, old backing should not be returned to scratch
390 // pool because it is held by image2
391 canvas1->clear(3);
392
393 canvas2->clear(4);
reed9ce9d672016-03-17 10:51:11 -0700394 sk_sp<SkImage> image3(surface2->makeImageSnapshot());
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000395 // Trigger copy on write on surface2. The new backing store should not
396 // be recycling a texture that is held by an existing image.
397 canvas2->clear(5);
reed9ce9d672016-03-17 10:51:11 -0700398 sk_sp<SkImage> image4(surface2->makeImageSnapshot());
bsalomon84a4e5a2016-02-29 11:41:52 -0800399 REPORTER_ASSERT(reporter, as_IB(image4)->peekTexture() != as_IB(image3)->peekTexture());
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000400 // The following assertion checks crbug.com/263329
bsalomon84a4e5a2016-02-29 11:41:52 -0800401 REPORTER_ASSERT(reporter, as_IB(image4)->peekTexture() != as_IB(image2)->peekTexture());
402 REPORTER_ASSERT(reporter, as_IB(image4)->peekTexture() != as_IB(image1)->peekTexture());
403 REPORTER_ASSERT(reporter, as_IB(image3)->peekTexture() != as_IB(image2)->peekTexture());
404 REPORTER_ASSERT(reporter, as_IB(image3)->peekTexture() != as_IB(image1)->peekTexture());
405 REPORTER_ASSERT(reporter, as_IB(image2)->peekTexture() != as_IB(image1)->peekTexture());
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000406}
egdanielab527a52016-06-28 08:07:26 -0700407DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceCRBug263329_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800408 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
bsalomon8b7451a2016-05-11 06:33:06 -0700409 auto surface1(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
410 auto surface2(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
reede8f30622016-03-23 18:59:25 -0700411 test_crbug263329(reporter, surface1.get(), surface2.get());
kkinnunen179a8f52015-11-20 13:32:24 -0800412 }
413}
414#endif
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000415
kkinnunen179a8f52015-11-20 13:32:24 -0800416DEF_TEST(SurfaceGetTexture, reporter) {
reede8f30622016-03-23 18:59:25 -0700417 auto surface(create_surface());
reed9ce9d672016-03-17 10:51:11 -0700418 sk_sp<SkImage> image(surface->makeImageSnapshot());
Robert Phillips6de99042017-01-31 11:31:39 -0500419 REPORTER_ASSERT(reporter, !as_IB(image)->isTextureBacked());
kkinnunen179a8f52015-11-20 13:32:24 -0800420 surface->notifyContentWillChange(SkSurface::kDiscard_ContentChangeMode);
Robert Phillips6de99042017-01-31 11:31:39 -0500421 REPORTER_ASSERT(reporter, !as_IB(image)->isTextureBacked());
kkinnunen179a8f52015-11-20 13:32:24 -0800422}
423#if SK_SUPPORT_GPU
egdanielab527a52016-06-28 08:07:26 -0700424DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfacepeekTexture_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800425 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
bsalomon8b7451a2016-05-11 06:33:06 -0700426 auto surface(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
reed9ce9d672016-03-17 10:51:11 -0700427 sk_sp<SkImage> image(surface->makeImageSnapshot());
Robert Phillips6de99042017-01-31 11:31:39 -0500428
429 REPORTER_ASSERT(reporter, as_IB(image)->isTextureBacked());
430 GrBackendObject textureHandle = image->getTextureHandle(false);
431 REPORTER_ASSERT(reporter, 0 != textureHandle);
kkinnunen179a8f52015-11-20 13:32:24 -0800432 surface->notifyContentWillChange(SkSurface::kDiscard_ContentChangeMode);
Robert Phillips6de99042017-01-31 11:31:39 -0500433 REPORTER_ASSERT(reporter, as_IB(image)->isTextureBacked());
434 REPORTER_ASSERT(reporter, textureHandle == image->getTextureHandle(false));
junov@chromium.orgda904742013-05-01 22:38:16 +0000435 }
junov@chromium.orgda904742013-05-01 22:38:16 +0000436}
kkinnunen179a8f52015-11-20 13:32:24 -0800437#endif
bsalomoneaaaf0b2015-01-23 08:08:04 -0800438
kkinnunen179a8f52015-11-20 13:32:24 -0800439#if SK_SUPPORT_GPU
bsalomon3582d3e2015-02-13 14:20:05 -0800440#include "GrGpuResourcePriv.h"
bsalomoneaaaf0b2015-01-23 08:08:04 -0800441#include "SkGpuDevice.h"
442#include "SkImage_Gpu.h"
443#include "SkSurface_Gpu.h"
444
reede8f30622016-03-23 18:59:25 -0700445static SkBudgeted is_budgeted(const sk_sp<SkSurface>& surf) {
446 SkSurface_Gpu* gsurf = (SkSurface_Gpu*)surf.get();
Robert Phillips6de99042017-01-31 11:31:39 -0500447
448 GrRenderTargetProxy* proxy = gsurf->getDevice()->accessRenderTargetContext()
449 ->asRenderTargetProxy();
450 return proxy->isBudgeted();
bsalomoneaaaf0b2015-01-23 08:08:04 -0800451}
452
bsalomon5ec26ae2016-02-25 08:33:02 -0800453static SkBudgeted is_budgeted(SkImage* image) {
bsalomon84a4e5a2016-02-29 11:41:52 -0800454 return ((SkImage_Gpu*)image)->peekTexture()->resourcePriv().isBudgeted();
bsalomoneaaaf0b2015-01-23 08:08:04 -0800455}
456
reed9ce9d672016-03-17 10:51:11 -0700457static SkBudgeted is_budgeted(const sk_sp<SkImage> image) {
458 return is_budgeted(image.get());
459}
460
egdanielab527a52016-06-28 08:07:26 -0700461DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceBudget, reporter, ctxInfo) {
bsalomoneaaaf0b2015-01-23 08:08:04 -0800462 SkImageInfo info = SkImageInfo::MakeN32Premul(8,8);
bsalomon5ec26ae2016-02-25 08:33:02 -0800463 for (auto sbudgeted : { SkBudgeted::kNo, SkBudgeted::kYes }) {
464 for (auto ibudgeted : { SkBudgeted::kNo, SkBudgeted::kYes }) {
bsalomon8b7451a2016-05-11 06:33:06 -0700465 auto surface(SkSurface::MakeRenderTarget(ctxInfo.grContext(), sbudgeted, info));
bsalomoneaaaf0b2015-01-23 08:08:04 -0800466 SkASSERT(surface);
467 REPORTER_ASSERT(reporter, sbudgeted == is_budgeted(surface));
468
reed9ce9d672016-03-17 10:51:11 -0700469 sk_sp<SkImage> image(surface->makeImageSnapshot(ibudgeted));
bsalomoneaaaf0b2015-01-23 08:08:04 -0800470
471 // Initially the image shares a texture with the surface, and the surface decides
472 // whether it is budgeted or not.
473 REPORTER_ASSERT(reporter, sbudgeted == is_budgeted(surface));
474 REPORTER_ASSERT(reporter, sbudgeted == is_budgeted(image));
475
476 // Now trigger copy-on-write
477 surface->getCanvas()->clear(SK_ColorBLUE);
478
479 // They don't share a texture anymore. They should each have made their own budget
480 // decision.
481 REPORTER_ASSERT(reporter, sbudgeted == is_budgeted(surface));
482 REPORTER_ASSERT(reporter, ibudgeted == is_budgeted(image));
483 }
484 }
485}
junov@chromium.orgb516a412013-05-01 22:49:59 +0000486#endif
junov@chromium.orgda904742013-05-01 22:38:16 +0000487
kkinnunen179a8f52015-11-20 13:32:24 -0800488static void test_no_canvas1(skiatest::Reporter* reporter,
489 SkSurface* surface,
490 SkSurface::ContentChangeMode mode) {
491 // Test passes by not asserting
492 surface->notifyContentWillChange(mode);
493 SkDEBUGCODE(surface->validate();)
494}
495static void test_no_canvas2(skiatest::Reporter* reporter,
496 SkSurface* surface,
497 SkSurface::ContentChangeMode mode) {
junov@chromium.orgacea3ef2013-04-16 19:41:09 +0000498 // Verifies the robustness of SkSurface for handling use cases where calls
499 // are made before a canvas is created.
reed9ce9d672016-03-17 10:51:11 -0700500 sk_sp<SkImage> image1 = surface->makeImageSnapshot();
501 sk_sp<SkImage> aur_image1(image1);
kkinnunen179a8f52015-11-20 13:32:24 -0800502 SkDEBUGCODE(image1->validate();)
503 SkDEBUGCODE(surface->validate();)
504 surface->notifyContentWillChange(mode);
505 SkDEBUGCODE(image1->validate();)
506 SkDEBUGCODE(surface->validate();)
reed9ce9d672016-03-17 10:51:11 -0700507 sk_sp<SkImage> image2 = surface->makeImageSnapshot();
508 sk_sp<SkImage> aur_image2(image2);
kkinnunen179a8f52015-11-20 13:32:24 -0800509 SkDEBUGCODE(image2->validate();)
510 SkDEBUGCODE(surface->validate();)
511 REPORTER_ASSERT(reporter, image1 != image2);
junov@chromium.orgacea3ef2013-04-16 19:41:09 +0000512}
kkinnunen179a8f52015-11-20 13:32:24 -0800513DEF_TEST(SurfaceNoCanvas, reporter) {
514 SkSurface::ContentChangeMode modes[] =
515 { SkSurface::kDiscard_ContentChangeMode, SkSurface::kRetain_ContentChangeMode};
516 for (auto& test_func : { &test_no_canvas1, &test_no_canvas2 }) {
517 for (auto& mode : modes) {
reede8f30622016-03-23 18:59:25 -0700518 test_func(reporter, create_surface().get(), mode);
kkinnunen179a8f52015-11-20 13:32:24 -0800519 }
520 }
521}
junov@chromium.orgb516a412013-05-01 22:49:59 +0000522#if SK_SUPPORT_GPU
egdanielab527a52016-06-28 08:07:26 -0700523DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceNoCanvas_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800524 SkSurface::ContentChangeMode modes[] =
525 { SkSurface::kDiscard_ContentChangeMode, SkSurface::kRetain_ContentChangeMode};
526 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
527 for (auto& test_func : { &test_no_canvas1, &test_no_canvas2 }) {
528 for (auto& mode : modes) {
bsalomon8b7451a2016-05-11 06:33:06 -0700529 auto surface(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
reede8f30622016-03-23 18:59:25 -0700530 test_func(reporter, surface.get(), mode);
bsalomone904c092014-07-17 10:50:59 -0700531 }
robertphillips@google.com3bddb382013-11-12 13:51:03 +0000532 }
junov@chromium.orgaf058352013-04-03 15:03:26 +0000533 }
junov@chromium.org995beb62013-03-28 13:49:22 +0000534}
kkinnunen179a8f52015-11-20 13:32:24 -0800535#endif
reed9cd016e2016-01-30 10:01:06 -0800536
537static void check_rowbytes_remain_consistent(SkSurface* surface, skiatest::Reporter* reporter) {
reed6ceeebd2016-03-09 14:26:26 -0800538 SkPixmap surfacePM;
539 REPORTER_ASSERT(reporter, surface->peekPixels(&surfacePM));
reed9cd016e2016-01-30 10:01:06 -0800540
reed9ce9d672016-03-17 10:51:11 -0700541 sk_sp<SkImage> image(surface->makeImageSnapshot());
reed6ceeebd2016-03-09 14:26:26 -0800542 SkPixmap pm;
543 REPORTER_ASSERT(reporter, image->peekPixels(&pm));
reed9cd016e2016-01-30 10:01:06 -0800544
reed6ceeebd2016-03-09 14:26:26 -0800545 REPORTER_ASSERT(reporter, surfacePM.rowBytes() == pm.rowBytes());
reed9cd016e2016-01-30 10:01:06 -0800546
547 // trigger a copy-on-write
548 surface->getCanvas()->drawPaint(SkPaint());
reed9ce9d672016-03-17 10:51:11 -0700549 sk_sp<SkImage> image2(surface->makeImageSnapshot());
reed9cd016e2016-01-30 10:01:06 -0800550 REPORTER_ASSERT(reporter, image->uniqueID() != image2->uniqueID());
551
reed6ceeebd2016-03-09 14:26:26 -0800552 SkPixmap pm2;
553 REPORTER_ASSERT(reporter, image2->peekPixels(&pm2));
554 REPORTER_ASSERT(reporter, pm2.rowBytes() == pm.rowBytes());
reed9cd016e2016-01-30 10:01:06 -0800555}
556
557DEF_TEST(surface_rowbytes, reporter) {
558 const SkImageInfo info = SkImageInfo::MakeN32Premul(100, 100);
559
reede8f30622016-03-23 18:59:25 -0700560 auto surf0(SkSurface::MakeRaster(info));
561 check_rowbytes_remain_consistent(surf0.get(), reporter);
reed9cd016e2016-01-30 10:01:06 -0800562
563 // specify a larger rowbytes
reede8f30622016-03-23 18:59:25 -0700564 auto surf1(SkSurface::MakeRaster(info, 500, nullptr));
565 check_rowbytes_remain_consistent(surf1.get(), reporter);
reed9cd016e2016-01-30 10:01:06 -0800566
567 // Try some illegal rowByte values
reede8f30622016-03-23 18:59:25 -0700568 auto s = SkSurface::MakeRaster(info, 396, nullptr); // needs to be at least 400
reed9cd016e2016-01-30 10:01:06 -0800569 REPORTER_ASSERT(reporter, nullptr == s);
reede8f30622016-03-23 18:59:25 -0700570 s = SkSurface::MakeRaster(info, 1 << 30, nullptr); // allocation to large
reed9cd016e2016-01-30 10:01:06 -0800571 REPORTER_ASSERT(reporter, nullptr == s);
572}
bsalomone63ffef2016-02-05 07:17:34 -0800573
fmalita03912f12016-07-06 06:22:06 -0700574DEF_TEST(surface_raster_zeroinitialized, reporter) {
575 sk_sp<SkSurface> s(SkSurface::MakeRasterN32Premul(100, 100));
576 SkPixmap pixmap;
577 REPORTER_ASSERT(reporter, s->peekPixels(&pixmap));
578
579 for (int i = 0; i < pixmap.info().width(); ++i) {
580 for (int j = 0; j < pixmap.info().height(); ++j) {
581 REPORTER_ASSERT(reporter, *pixmap.addr32(i, j) == 0);
582 }
583 }
584}
585
bsalomone63ffef2016-02-05 07:17:34 -0800586#if SK_SUPPORT_GPU
ericrkc4025182016-05-04 12:01:58 -0700587static sk_sp<SkSurface> create_gpu_surface_backend_texture(
588 GrContext* context, int sampleCnt, uint32_t color, GrBackendObject* outTexture) {
589 const int kWidth = 10;
590 const int kHeight = 10;
Ben Wagner7ecc5962016-11-02 17:07:33 -0400591 std::unique_ptr<uint32_t[]> pixels(new uint32_t[kWidth * kHeight]);
ericrkc4025182016-05-04 12:01:58 -0700592 sk_memset32(pixels.get(), color, kWidth * kHeight);
593 GrBackendTextureDesc desc;
594 desc.fConfig = kRGBA_8888_GrPixelConfig;
595 desc.fWidth = kWidth;
596 desc.fHeight = kHeight;
597 desc.fFlags = kRenderTarget_GrBackendTextureFlag;
598 desc.fTextureHandle = context->getGpu()->createTestingOnlyBackendTexture(
egdaniel0a3a7f72016-06-24 09:22:31 -0700599 pixels.get(), kWidth, kHeight, kRGBA_8888_GrPixelConfig, true);
ericrkc4025182016-05-04 12:01:58 -0700600 desc.fSampleCnt = sampleCnt;
601 sk_sp<SkSurface> surface = SkSurface::MakeFromBackendTexture(context, desc, nullptr);
602 if (!surface) {
603 context->getGpu()->deleteTestingOnlyBackendTexture(desc.fTextureHandle);
604 return nullptr;
605 }
606 *outTexture = desc.fTextureHandle;
607 return surface;
608}
bsalomone63ffef2016-02-05 07:17:34 -0800609
ericrkc4025182016-05-04 12:01:58 -0700610static sk_sp<SkSurface> create_gpu_surface_backend_texture_as_render_target(
611 GrContext* context, int sampleCnt, uint32_t color, GrBackendObject* outTexture) {
612 const int kWidth = 10;
613 const int kHeight = 10;
Ben Wagner7ecc5962016-11-02 17:07:33 -0400614 std::unique_ptr<uint32_t[]> pixels(new uint32_t[kWidth * kHeight]);
ericrkc4025182016-05-04 12:01:58 -0700615 sk_memset32(pixels.get(), color, kWidth * kHeight);
616 GrBackendTextureDesc desc;
617 desc.fConfig = kRGBA_8888_GrPixelConfig;
618 desc.fWidth = kWidth;
619 desc.fHeight = kHeight;
620 desc.fFlags = kRenderTarget_GrBackendTextureFlag;
621 desc.fTextureHandle = context->getGpu()->createTestingOnlyBackendTexture(
egdaniel0a3a7f72016-06-24 09:22:31 -0700622 pixels.get(), kWidth, kHeight, kRGBA_8888_GrPixelConfig, true);
ericrkc4025182016-05-04 12:01:58 -0700623 desc.fSampleCnt = sampleCnt;
624 sk_sp<SkSurface> surface = SkSurface::MakeFromBackendTextureAsRenderTarget(context, desc,
625 nullptr);
626 if (!surface) {
627 context->getGpu()->deleteTestingOnlyBackendTexture(desc.fTextureHandle);
628 return nullptr;
629 }
630 *outTexture = desc.fTextureHandle;
631 return surface;
632}
633
634static void test_surface_clear(skiatest::Reporter* reporter, sk_sp<SkSurface> surface,
Robert Phillips2c862492017-01-18 10:08:39 -0500635 std::function<sk_sp<GrSurfaceContext>(SkSurface*)> grSurfaceGetter,
ericrkc4025182016-05-04 12:01:58 -0700636 uint32_t expectedValue) {
bsalomone63ffef2016-02-05 07:17:34 -0800637 if (!surface) {
638 ERRORF(reporter, "Could not create GPU SkSurface.");
639 return;
640 }
641 int w = surface->width();
642 int h = surface->height();
Ben Wagner7ecc5962016-11-02 17:07:33 -0400643 std::unique_ptr<uint32_t[]> pixels(new uint32_t[w * h]);
ericrkc4025182016-05-04 12:01:58 -0700644 sk_memset32(pixels.get(), ~expectedValue, w * h);
bsalomone63ffef2016-02-05 07:17:34 -0800645
Robert Phillips2c862492017-01-18 10:08:39 -0500646 sk_sp<GrSurfaceContext> grSurfaceContext(grSurfaceGetter(surface.get()));
647 if (!grSurfaceContext) {
bsalomone63ffef2016-02-05 07:17:34 -0800648 ERRORF(reporter, "Could access render target of GPU SkSurface.");
649 return;
650 }
bsalomon2fba8092016-02-05 13:47:06 -0800651 surface.reset();
Robert Phillips2c862492017-01-18 10:08:39 -0500652
653 SkImageInfo ii = SkImageInfo::Make(w, h, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
654 grSurfaceContext->readPixels(ii, pixels.get(), 0, 0, 0);
bsalomone63ffef2016-02-05 07:17:34 -0800655 for (int y = 0; y < h; ++y) {
656 for (int x = 0; x < w; ++x) {
657 uint32_t pixel = pixels.get()[y * w + x];
658 if (pixel != expectedValue) {
659 SkString msg;
660 if (expectedValue) {
661 msg = "SkSurface should have left render target unmodified";
662 } else {
663 msg = "SkSurface should have cleared the render target";
664 }
665 ERRORF(reporter,
666 "%s but read 0x%08x (instead of 0x%08x) at %x,%d", msg.c_str(), pixel,
667 expectedValue, x, y);
668 return;
669 }
670 }
671 }
672}
673
bsalomon758586c2016-04-06 14:02:39 -0700674DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(SurfaceClear_Gpu, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -0700675 GrContext* context = ctxInfo.grContext();
ericrkc4025182016-05-04 12:01:58 -0700676
Robert Phillips2c862492017-01-18 10:08:39 -0500677 std::function<sk_sp<GrSurfaceContext>(SkSurface*)> grSurfaceContextGetters[] = {
egdanielab527a52016-06-28 08:07:26 -0700678 [] (SkSurface* s){
Robert Phillips2c862492017-01-18 10:08:39 -0500679 return sk_ref_sp(s->getCanvas()->internal_private_accessTopLayerRenderTargetContext());
680 },
681 [] (SkSurface* s){
682 sk_sp<SkImage> i(s->makeImageSnapshot());
683 SkImage_Gpu* gpuImage = (SkImage_Gpu *) as_IB(i);
Robert Phillips6de99042017-01-31 11:31:39 -0500684 sk_sp<GrTextureProxy> proxy = gpuImage->asTextureProxyRef();
Robert Phillips2c862492017-01-18 10:08:39 -0500685 GrContext* context = gpuImage->context();
686 return context->contextPriv().makeWrappedSurfaceContext(std::move(proxy),
687 gpuImage->refColorSpace());
688 }
bsalomone63ffef2016-02-05 07:17:34 -0800689 };
ericrkc4025182016-05-04 12:01:58 -0700690
Robert Phillips2c862492017-01-18 10:08:39 -0500691 for (auto grSurfaceGetter : grSurfaceContextGetters) {
ericrkc4025182016-05-04 12:01:58 -0700692 // Test that non-wrapped RTs are created clear.
bsalomone63ffef2016-02-05 07:17:34 -0800693 for (auto& surface_func : {&create_gpu_surface, &create_gpu_scratch_surface}) {
reede8f30622016-03-23 18:59:25 -0700694 auto surface = surface_func(context, kPremul_SkAlphaType, nullptr);
bsalomone63ffef2016-02-05 07:17:34 -0800695 test_surface_clear(reporter, surface, grSurfaceGetter, 0x0);
696 }
697 // Wrapped RTs are *not* supposed to clear (to allow client to partially update a surface).
ericrkc4025182016-05-04 12:01:58 -0700698 const uint32_t kOrigColor = 0xABABABAB;
699 for (auto& surfaceFunc : {&create_gpu_surface_backend_texture,
700 &create_gpu_surface_backend_texture_as_render_target}) {
701 GrBackendObject textureObject;
702 auto surface = surfaceFunc(context, 0, kOrigColor, &textureObject);
703 test_surface_clear(reporter, surface, grSurfaceGetter, kOrigColor);
704 surface.reset();
705 context->getGpu()->deleteTestingOnlyBackendTexture(textureObject);
706 }
707 }
708}
bsalomone63ffef2016-02-05 07:17:34 -0800709
ericrkc4025182016-05-04 12:01:58 -0700710static void test_surface_draw_partially(
711 skiatest::Reporter* reporter, sk_sp<SkSurface> surface, uint32_t origColor) {
712 const int kW = surface->width();
713 const int kH = surface->height();
714 SkPaint paint;
715 const SkColor kRectColor = ~origColor | 0xFF000000;
716 paint.setColor(kRectColor);
717 surface->getCanvas()->drawRect(SkRect::MakeWH(SkIntToScalar(kW), SkIntToScalar(kH)/2),
718 paint);
Ben Wagner7ecc5962016-11-02 17:07:33 -0400719 std::unique_ptr<uint32_t[]> pixels(new uint32_t[kW * kH]);
ericrkc4025182016-05-04 12:01:58 -0700720 sk_memset32(pixels.get(), ~origColor, kW * kH);
721 // Read back RGBA to avoid format conversions that may not be supported on all platforms.
722 SkImageInfo readInfo = SkImageInfo::Make(kW, kH, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
723 SkAssertResult(surface->readPixels(readInfo, pixels.get(), kW * sizeof(uint32_t), 0, 0));
724 bool stop = false;
725 SkPMColor origColorPM = SkPackARGB_as_RGBA((origColor >> 24 & 0xFF),
726 (origColor >> 0 & 0xFF),
727 (origColor >> 8 & 0xFF),
728 (origColor >> 16 & 0xFF));
729 SkPMColor rectColorPM = SkPackARGB_as_RGBA((kRectColor >> 24 & 0xFF),
730 (kRectColor >> 16 & 0xFF),
731 (kRectColor >> 8 & 0xFF),
732 (kRectColor >> 0 & 0xFF));
733 for (int y = 0; y < kH/2 && !stop; ++y) {
734 for (int x = 0; x < kW && !stop; ++x) {
735 REPORTER_ASSERT(reporter, rectColorPM == pixels[x + y * kW]);
736 if (rectColorPM != pixels[x + y * kW]) {
737 stop = true;
738 }
739 }
740 }
741 stop = false;
742 for (int y = kH/2; y < kH && !stop; ++y) {
743 for (int x = 0; x < kW && !stop; ++x) {
744 REPORTER_ASSERT(reporter, origColorPM == pixels[x + y * kW]);
745 if (origColorPM != pixels[x + y * kW]) {
746 stop = true;
747 }
748 }
749 }
750}
bsalomone63ffef2016-02-05 07:17:34 -0800751
egdanielab527a52016-06-28 08:07:26 -0700752DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfacePartialDraw_Gpu, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -0700753 GrGpu* gpu = ctxInfo.grContext()->getGpu();
ericrkc4025182016-05-04 12:01:58 -0700754 if (!gpu) {
755 return;
756 }
757 static const uint32_t kOrigColor = 0xFFAABBCC;
bsalomone63ffef2016-02-05 07:17:34 -0800758
ericrkc4025182016-05-04 12:01:58 -0700759 for (auto& surfaceFunc : {&create_gpu_surface_backend_texture,
760 &create_gpu_surface_backend_texture_as_render_target}) {
761 // Validate that we can draw to the canvas and that the original texture color is
762 // preserved in pixels that aren't rendered to via the surface.
763 // This works only for non-multisampled case.
764 GrBackendObject textureObject;
bsalomon8b7451a2016-05-11 06:33:06 -0700765 auto surface = surfaceFunc(ctxInfo.grContext(), 0, kOrigColor, &textureObject);
ericrkc4025182016-05-04 12:01:58 -0700766 if (surface) {
767 test_surface_draw_partially(reporter, surface, kOrigColor);
768 surface.reset();
769 gpu->deleteTestingOnlyBackendTexture(textureObject);
770 }
771 }
772}
773
774
775DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(SurfaceAttachStencil_Gpu, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -0700776 GrGpu* gpu = ctxInfo.grContext()->getGpu();
ericrkc4025182016-05-04 12:01:58 -0700777 if (!gpu) {
778 return;
779 }
780 static const uint32_t kOrigColor = 0xFFAABBCC;
781
782 for (auto& surfaceFunc : {&create_gpu_surface_backend_texture,
783 &create_gpu_surface_backend_texture_as_render_target}) {
784 for (int sampleCnt : {0, 4, 8}) {
785 GrBackendObject textureObject;
bsalomon8b7451a2016-05-11 06:33:06 -0700786 auto surface = surfaceFunc(ctxInfo.grContext(), sampleCnt, kOrigColor, &textureObject);
ericrkc4025182016-05-04 12:01:58 -0700787
788 if (!surface && sampleCnt > 0) {
789 // Certain platforms don't support MSAA, skip these.
790 continue;
791 }
792
793 // Validate that we can attach a stencil buffer to an SkSurface created by either of
794 // our surface functions.
Brian Osman11052242016-10-27 14:47:55 -0400795 GrRenderTarget* rt = surface->getCanvas()
796 ->internal_private_accessTopLayerRenderTargetContext()->accessRenderTarget();
ericrkc4025182016-05-04 12:01:58 -0700797 REPORTER_ASSERT(reporter,
bsalomon8b7451a2016-05-11 06:33:06 -0700798 ctxInfo.grContext()->resourceProvider()->attachStencilAttachment(rt));
ericrkc4025182016-05-04 12:01:58 -0700799 gpu->deleteTestingOnlyBackendTexture(textureObject);
800 }
bsalomone63ffef2016-02-05 07:17:34 -0800801 }
802}
803#endif
brianosman0e22eb82016-08-30 07:07:59 -0700804
805static void test_surface_creation_and_snapshot_with_color_space(
806 skiatest::Reporter* reporter,
807 const char* prefix,
808 bool f16Support,
809 std::function<sk_sp<SkSurface>(const SkImageInfo&)> surfaceMaker) {
810
Matt Sarett77a7a1b2017-02-07 13:56:11 -0500811 auto srgbColorSpace = SkColorSpace::MakeSRGB();
812 auto adobeColorSpace = SkColorSpace_Base::MakeNamed(SkColorSpace_Base::kAdobeRGB_Named);
raftias94888332016-10-18 10:02:51 -0700813 const SkMatrix44* srgbMatrix = as_CSB(srgbColorSpace)->toXYZD50();
814 SkASSERT(srgbMatrix);
Matt Sarett99e3f7d2016-10-28 12:51:08 -0400815 SkColorSpaceTransferFn oddGamma;
816 oddGamma.fA = 1.0f;
817 oddGamma.fB = oddGamma.fC = oddGamma.fD = oddGamma.fE = oddGamma.fF = 0.0f;
818 oddGamma.fG = 4.0f;
Brian Osman526972e2016-10-24 09:24:02 -0400819 auto oddColorSpace = SkColorSpace::MakeRGB(oddGamma, *srgbMatrix);
Matt Sarett77a7a1b2017-02-07 13:56:11 -0500820 auto linearColorSpace = SkColorSpace::MakeSRGBLinear();
brianosman0e22eb82016-08-30 07:07:59 -0700821
822 const struct {
823 SkColorType fColorType;
824 sk_sp<SkColorSpace> fColorSpace;
825 bool fShouldWork;
826 const char* fDescription;
827 } testConfigs[] = {
828 { kN32_SkColorType, nullptr, true, "N32-nullptr" },
829 { kN32_SkColorType, linearColorSpace, false, "N32-linear" },
830 { kN32_SkColorType, srgbColorSpace, true, "N32-srgb" },
831 { kN32_SkColorType, adobeColorSpace, true, "N32-adobe" },
832 { kN32_SkColorType, oddColorSpace, false, "N32-odd" },
Brian Osmaneb21ef62016-11-01 16:30:21 -0400833 { kRGBA_F16_SkColorType, nullptr, true, "F16-nullptr" },
brianosman0e22eb82016-08-30 07:07:59 -0700834 { kRGBA_F16_SkColorType, linearColorSpace, true, "F16-linear" },
835 { kRGBA_F16_SkColorType, srgbColorSpace, false, "F16-srgb" },
836 { kRGBA_F16_SkColorType, adobeColorSpace, false, "F16-adobe" },
837 { kRGBA_F16_SkColorType, oddColorSpace, false, "F16-odd" },
838 { kRGB_565_SkColorType, srgbColorSpace, false, "565-srgb" },
839 { kAlpha_8_SkColorType, srgbColorSpace, false, "A8-srgb" },
840 };
841
842 for (auto& testConfig : testConfigs) {
843 SkString fullTestName = SkStringPrintf("%s-%s", prefix, testConfig.fDescription);
844 SkImageInfo info = SkImageInfo::Make(10, 10, testConfig.fColorType, kPremul_SkAlphaType,
845 testConfig.fColorSpace);
846
847 // For some GPU contexts (eg ANGLE), we don't have f16 support, so we should fail to create
848 // any surface of that type:
849 bool shouldWork = testConfig.fShouldWork &&
850 (f16Support || kRGBA_F16_SkColorType != testConfig.fColorType);
851
852 auto surface(surfaceMaker(info));
853 REPORTER_ASSERT_MESSAGE(reporter, SkToBool(surface) == shouldWork, fullTestName.c_str());
854
855 if (shouldWork && surface) {
856 sk_sp<SkImage> image(surface->makeImageSnapshot());
857 REPORTER_ASSERT_MESSAGE(reporter, image, testConfig.fDescription);
858 SkColorSpace* imageColorSpace = as_IB(image)->onImageInfo().colorSpace();
859 REPORTER_ASSERT_MESSAGE(reporter, imageColorSpace == testConfig.fColorSpace.get(),
860 fullTestName.c_str());
861 }
862 }
863}
864
865DEF_TEST(SurfaceCreationWithColorSpace, reporter) {
866 auto surfaceMaker = [](const SkImageInfo& info) {
867 return SkSurface::MakeRaster(info);
868 };
869
870 test_surface_creation_and_snapshot_with_color_space(reporter, "raster", true, surfaceMaker);
871}
872
873#if SK_SUPPORT_GPU
874DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceCreationWithColorSpace_Gpu, reporter, ctxInfo) {
875 GrContext* context = ctxInfo.grContext();
876 bool f16Support = context->caps()->isConfigRenderable(kRGBA_half_GrPixelConfig, false);
877 auto surfaceMaker = [context](const SkImageInfo& info) {
878 return SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, info);
879 };
880
881 test_surface_creation_and_snapshot_with_color_space(reporter, "gpu", f16Support, surfaceMaker);
882
883 std::vector<GrBackendObject> textureHandles;
884 auto wrappedSurfaceMaker = [context,&textureHandles](const SkImageInfo& info) {
885 GrBackendTextureDesc desc;
886 desc.fConfig = SkImageInfo2GrPixelConfig(info, *context->caps());
887 desc.fWidth = 10;
888 desc.fHeight = 10;
889 desc.fFlags = kRenderTarget_GrBackendTextureFlag;
890 desc.fTextureHandle = context->getGpu()->createTestingOnlyBackendTexture(
891 nullptr, desc.fWidth, desc.fHeight, desc.fConfig, true);
892
893 if (!desc.fTextureHandle) {
894 return sk_sp<SkSurface>(nullptr);
895 }
896 textureHandles.push_back(desc.fTextureHandle);
897
898 return SkSurface::MakeFromBackendTexture(context, desc, sk_ref_sp(info.colorSpace()),
899 nullptr);
900 };
901
902 test_surface_creation_and_snapshot_with_color_space(reporter, "wrapped", f16Support,
903 wrappedSurfaceMaker);
904
905 for (auto textureHandle : textureHandles) {
906 context->getGpu()->deleteTestingOnlyBackendTexture(textureHandle);
907 }
908}
909#endif
Matt Sarett22886c42016-11-22 11:31:41 -0500910
911static void test_overdraw_surface(skiatest::Reporter* r, SkSurface* surface) {
Matt Sarette11b6142016-11-28 18:28:07 -0500912 SkOverdrawCanvas canvas(surface->getCanvas());
913 canvas.drawPaint(SkPaint());
Matt Sarett22886c42016-11-22 11:31:41 -0500914 sk_sp<SkImage> image = surface->makeImageSnapshot();
915
916 SkBitmap bitmap;
917 image->asLegacyBitmap(&bitmap, SkImage::kRO_LegacyBitmapMode);
918 bitmap.lockPixels();
919 for (int y = 0; y < 10; y++) {
920 for (int x = 0; x < 10; x++) {
921 REPORTER_ASSERT(r, 1 == SkGetPackedA32(*bitmap.getAddr32(x, y)));
922 }
923 }
924}
925
926DEF_TEST(OverdrawSurface_Raster, r) {
927 sk_sp<SkSurface> surface = create_surface();
928 test_overdraw_surface(r, surface.get());
929}
930
931#if SK_SUPPORT_GPU
932DEF_GPUTEST_FOR_RENDERING_CONTEXTS(OverdrawSurface_Gpu, r, ctxInfo) {
933 GrContext* context = ctxInfo.grContext();
934 sk_sp<SkSurface> surface = create_gpu_surface(context);
935 test_overdraw_surface(r, surface.get());
936}
937#endif