blob: 744dd63a427d115ea6a3e26292752d9ba787023e [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"
Mike Reed986480a2017-01-13 22:43:16 +000011#include "SkDevice.h"
bsalomon55812362015-06-10 08:49:28 -070012#include "SkImage_Base.h"
Matt Sarette11b6142016-11-28 18:28:07 -050013#include "SkOverdrawCanvas.h"
bungemand3ebb482015-08-05 13:57:49 -070014#include "SkPath.h"
Mike Reed267be7f2017-02-13 09:32:54 -050015#include "SkRegion.h"
junov@chromium.org995beb62013-03-28 13:49:22 +000016#include "SkRRect.h"
17#include "SkSurface.h"
reed@google.com4f7c6152014-02-06 14:11:56 +000018#include "SkUtils.h"
junov@chromium.org995beb62013-03-28 13:49:22 +000019#include "Test.h"
20
21#if SK_SUPPORT_GPU
Brian Salomonbdecacf2018-02-02 20:32:49 -050022#include <vector>
kkinnunen179a8f52015-11-20 13:32:24 -080023#include "GrContext.h"
Robert Phillips2c862492017-01-18 10:08:39 -050024#include "GrContextPriv.h"
Brian Salomon3a2cc2c2018-02-03 00:25:12 +000025#include "GrGpu.h"
Brian Salomonbdecacf2018-02-02 20:32:49 -050026#include "GrGpuResourcePriv.h"
27#include "GrRenderTargetContext.h"
ericrkc4025182016-05-04 12:01:58 -070028#include "GrResourceProvider.h"
Greg Daniel7ef28f32017-04-20 16:41:55 +000029#include "GrTest.h"
Brian Salomonbdecacf2018-02-02 20:32:49 -050030#include "SkGpuDevice.h"
31#include "SkImage_Gpu.h"
32#include "SkSurface_Gpu.h"
junov@chromium.org995beb62013-03-28 13:49:22 +000033#endif
34
Mike Reedd4746982018-02-07 16:05:29 -050035#include "sk_tool_utils.h"
36
kkinnunen179a8f52015-11-20 13:32:24 -080037#include <initializer_list>
bsalomon74f681d2015-06-23 14:38:48 -070038
kkinnunen179a8f52015-11-20 13:32:24 -080039static void release_direct_surface_storage(void* pixels, void* context) {
reed982542d2014-06-27 06:48:14 -070040 SkASSERT(pixels == context);
41 sk_free(pixels);
42}
reede8f30622016-03-23 18:59:25 -070043static sk_sp<SkSurface> create_surface(SkAlphaType at = kPremul_SkAlphaType,
44 SkImageInfo* requestedInfo = nullptr) {
bsalomon74f681d2015-06-23 14:38:48 -070045 const SkImageInfo info = SkImageInfo::MakeN32(10, 10, at);
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +000046 if (requestedInfo) {
47 *requestedInfo = info;
48 }
reede8f30622016-03-23 18:59:25 -070049 return SkSurface::MakeRaster(info);
junov@chromium.org995beb62013-03-28 13:49:22 +000050}
reede8f30622016-03-23 18:59:25 -070051static sk_sp<SkSurface> create_direct_surface(SkAlphaType at = kPremul_SkAlphaType,
52 SkImageInfo* requestedInfo = nullptr) {
kkinnunen179a8f52015-11-20 13:32:24 -080053 const SkImageInfo info = SkImageInfo::MakeN32(10, 10, at);
54 if (requestedInfo) {
55 *requestedInfo = info;
56 }
57 const size_t rowBytes = info.minRowBytes();
Mike Reedf0ffb892017-10-03 14:47:21 -040058 void* storage = sk_malloc_throw(info.computeByteSize(rowBytes));
reede8f30622016-03-23 18:59:25 -070059 return SkSurface::MakeRasterDirectReleaseProc(info, storage, rowBytes,
60 release_direct_surface_storage,
61 storage);
kkinnunen179a8f52015-11-20 13:32:24 -080062}
63#if SK_SUPPORT_GPU
reede8f30622016-03-23 18:59:25 -070064static sk_sp<SkSurface> create_gpu_surface(GrContext* context, SkAlphaType at = kPremul_SkAlphaType,
65 SkImageInfo* requestedInfo = nullptr) {
kkinnunen179a8f52015-11-20 13:32:24 -080066 const SkImageInfo info = SkImageInfo::MakeN32(10, 10, at);
67 if (requestedInfo) {
68 *requestedInfo = info;
69 }
robertphillips7e922762016-07-26 11:38:17 -070070 return SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, info);
kkinnunen179a8f52015-11-20 13:32:24 -080071}
reede8f30622016-03-23 18:59:25 -070072static sk_sp<SkSurface> create_gpu_scratch_surface(GrContext* context,
73 SkAlphaType at = kPremul_SkAlphaType,
74 SkImageInfo* requestedInfo = nullptr) {
kkinnunen179a8f52015-11-20 13:32:24 -080075 const SkImageInfo info = SkImageInfo::MakeN32(10, 10, at);
76 if (requestedInfo) {
77 *requestedInfo = info;
78 }
robertphillips7e922762016-07-26 11:38:17 -070079 return SkSurface::MakeRenderTarget(context, SkBudgeted::kYes, info);
kkinnunen179a8f52015-11-20 13:32:24 -080080}
81#endif
junov@chromium.org995beb62013-03-28 13:49:22 +000082
kkinnunen179a8f52015-11-20 13:32:24 -080083DEF_TEST(SurfaceEmpty, reporter) {
reedb2497c22014-12-31 12:31:43 -080084 const SkImageInfo info = SkImageInfo::Make(0, 0, kN32_SkColorType, kPremul_SkAlphaType);
reede8f30622016-03-23 18:59:25 -070085 REPORTER_ASSERT(reporter, nullptr == SkSurface::MakeRaster(info));
86 REPORTER_ASSERT(reporter, nullptr == SkSurface::MakeRasterDirect(info, nullptr, 0));
kkinnunen179a8f52015-11-20 13:32:24 -080087
reedb2497c22014-12-31 12:31:43 -080088}
kkinnunen179a8f52015-11-20 13:32:24 -080089#if SK_SUPPORT_GPU
egdanielab527a52016-06-28 08:07:26 -070090DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceEmpty_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -080091 const SkImageInfo info = SkImageInfo::Make(0, 0, kN32_SkColorType, kPremul_SkAlphaType);
92 REPORTER_ASSERT(reporter, nullptr ==
robertphillips7e922762016-07-26 11:38:17 -070093 SkSurface::MakeRenderTarget(ctxInfo.grContext(), SkBudgeted::kNo, info));
kkinnunen179a8f52015-11-20 13:32:24 -080094}
95#endif
reedb2497c22014-12-31 12:31:43 -080096
Brian Salomonbdecacf2018-02-02 20:32:49 -050097#if SK_SUPPORT_GPU
98DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrContext_colorTypeSupportedAsSurface, reporter, ctxInfo) {
99 for (int ct = 0; ct < kLastEnum_SkColorType; ++ct) {
100 static constexpr int kSize = 10;
101
102 SkColorType colorType = static_cast<SkColorType>(ct);
103 auto info = SkImageInfo::Make(kSize, kSize, colorType, kOpaque_SkAlphaType, nullptr);
104 bool can = ctxInfo.grContext()->colorTypeSupportedAsSurface(colorType);
105 auto surf = SkSurface::MakeRenderTarget(ctxInfo.grContext(), SkBudgeted::kYes, info, 1,
106 nullptr);
107 REPORTER_ASSERT(reporter, can == SkToBool(surf), "ct: %d, can: %d, surf: %d",
108 colorType, can, SkToBool(surf));
109
110 auto* gpu = ctxInfo.grContext()->contextPriv().getGpu();
111 GrBackendTexture backendTex = gpu->createTestingOnlyBackendTexture(
112 nullptr, kSize, kSize, colorType, true, GrMipMapped::kNo);
113 surf = SkSurface::MakeFromBackendTexture(ctxInfo.grContext(), backendTex,
114 kTopLeft_GrSurfaceOrigin, 0, colorType, nullptr,
115 nullptr);
116 REPORTER_ASSERT(reporter, can == SkToBool(surf), "ct: %d, can: %d, surf: %d",
117 colorType, can, SkToBool(surf));
118
119 surf = SkSurface::MakeFromBackendTextureAsRenderTarget(ctxInfo.grContext(), backendTex,
120 kTopLeft_GrSurfaceOrigin, 1,
121 colorType, nullptr, nullptr);
122 REPORTER_ASSERT(reporter, can == SkToBool(surf), "ct: %d, can: %d, surf: %d",
123 colorType, can, SkToBool(surf));
124
125 surf.reset();
126 ctxInfo.grContext()->flush();
127 if (backendTex.isValid()) {
Brian Salomon26102cb2018-03-09 09:33:19 -0500128 gpu->deleteTestingOnlyBackendTexture(backendTex);
Brian Salomonbdecacf2018-02-02 20:32:49 -0500129 }
130
131 static constexpr int kSampleCnt = 2;
132
133 can = ctxInfo.grContext()->maxSurfaceSampleCountForColorType(colorType) >= kSampleCnt;
134 surf = SkSurface::MakeRenderTarget(ctxInfo.grContext(), SkBudgeted::kYes, info, kSampleCnt,
135 nullptr);
136 REPORTER_ASSERT(reporter, can == SkToBool(surf), "ct: %d, can: %d, surf: %d",
137 colorType, can, SkToBool(surf));
138
139 backendTex = gpu->createTestingOnlyBackendTexture(nullptr, kSize, kSize, colorType, true,
140 GrMipMapped::kNo);
141 surf = SkSurface::MakeFromBackendTexture(ctxInfo.grContext(), backendTex,
142 kTopLeft_GrSurfaceOrigin, kSampleCnt, colorType,
143 nullptr, nullptr);
144 REPORTER_ASSERT(reporter, can == SkToBool(surf),
145 "colorTypeSupportedAsSurface:%d, surf:%d, ct:%d", can, SkToBool(surf),
146 colorType);
147 // Ensure that the sample count stored on the resulting SkSurface is a valid value.
148 if (surf) {
149 auto* rtc = ((SkSurface_Gpu*)(surf.get()))->getDevice()->accessRenderTargetContext();
150 int storedCnt = rtc->numStencilSamples();
151 int allowedCnt = ctxInfo.grContext()->caps()->getSampleCount(
152 storedCnt, rtc->asSurfaceProxy()->config());
153 REPORTER_ASSERT(reporter, storedCnt == allowedCnt,
154 "Should store an allowed sample count (%d vs %d)", allowedCnt,
155 storedCnt);
156 }
157
158 surf = SkSurface::MakeFromBackendTextureAsRenderTarget(ctxInfo.grContext(), backendTex,
159 kTopLeft_GrSurfaceOrigin, kSampleCnt,
160 colorType, nullptr, nullptr);
161 REPORTER_ASSERT(reporter, can == SkToBool(surf),
162 "colorTypeSupportedAsSurface:%d, surf:%d, ct:%d", can, SkToBool(surf),
163 colorType);
164 if (surf) {
165 auto* rtc = ((SkSurface_Gpu*)(surf.get()))->getDevice()->accessRenderTargetContext();
166 int storedCnt = rtc->numStencilSamples();
167 int allowedCnt = ctxInfo.grContext()->caps()->getSampleCount(
168 storedCnt, rtc->asSurfaceProxy()->config());
169 REPORTER_ASSERT(reporter, storedCnt == allowedCnt,
170 "Should store an allowed sample count (%d vs %d)", allowedCnt,
171 storedCnt);
172 }
173
174 surf.reset();
175 ctxInfo.grContext()->flush();
176 if (backendTex.isValid()) {
Brian Salomon26102cb2018-03-09 09:33:19 -0500177 gpu->deleteTestingOnlyBackendTexture(backendTex);
Brian Salomonbdecacf2018-02-02 20:32:49 -0500178 }
179 }
180}
181
182DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrContext_maxSurfaceSamplesForColorType, reporter, ctxInfo) {
183 for (int ct = 0; ct < kLastEnum_SkColorType; ++ct) {
184 static constexpr int kSize = 10;
185
186 SkColorType colorType = static_cast<SkColorType>(ct);
187 int max = ctxInfo.grContext()->maxSurfaceSampleCountForColorType(colorType);
188 if (!max) {
189 continue;
190 }
191 auto* gpu = ctxInfo.grContext()->contextPriv().getGpu();
192 GrBackendTexture backendTex = gpu->createTestingOnlyBackendTexture(
193 nullptr, kSize, kSize, colorType, true, GrMipMapped::kNo);
Brian Salomon99501b72018-03-23 11:26:11 -0400194 if (!backendTex.isValid()) {
195 continue;
196 }
197 SkScopeExit freeTex([&backendTex, gpu] {gpu->deleteTestingOnlyBackendTexture(backendTex);});
Brian Salomonbdecacf2018-02-02 20:32:49 -0500198 auto info = SkImageInfo::Make(kSize, kSize, colorType, kOpaque_SkAlphaType, nullptr);
199 auto surf = SkSurface::MakeFromBackendTexture(ctxInfo.grContext(), backendTex,
200 kTopLeft_GrSurfaceOrigin, max,
201 colorType, nullptr, nullptr);
202 REPORTER_ASSERT(reporter, surf);
203 if (!surf) {
204 continue;
205 }
206 int sampleCnt = ((SkSurface_Gpu*)(surf.get()))
207 ->getDevice()
208 ->accessRenderTargetContext()
209 ->numStencilSamples();
210 REPORTER_ASSERT(reporter, sampleCnt == max, "Exected: %d, actual: %d", max, sampleCnt);
211 }
212}
213#endif
214
kkinnunen179a8f52015-11-20 13:32:24 -0800215static void test_canvas_peek(skiatest::Reporter* reporter,
reede8f30622016-03-23 18:59:25 -0700216 sk_sp<SkSurface>& surface,
kkinnunen179a8f52015-11-20 13:32:24 -0800217 const SkImageInfo& requestInfo,
218 bool expectPeekSuccess) {
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000219 const SkColor color = SK_ColorRED;
220 const SkPMColor pmcolor = SkPreMultiplyColor(color);
kkinnunen179a8f52015-11-20 13:32:24 -0800221 surface->getCanvas()->clear(color);
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000222
reed6ceeebd2016-03-09 14:26:26 -0800223 SkPixmap pmap;
224 bool success = surface->getCanvas()->peekPixels(&pmap);
kkinnunen179a8f52015-11-20 13:32:24 -0800225 REPORTER_ASSERT(reporter, expectPeekSuccess == success);
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000226
reed6ceeebd2016-03-09 14:26:26 -0800227 SkPixmap pmap2;
228 const void* addr2 = surface->peekPixels(&pmap2) ? pmap2.addr() : nullptr;
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000229
kkinnunen179a8f52015-11-20 13:32:24 -0800230 if (success) {
reed6ceeebd2016-03-09 14:26:26 -0800231 REPORTER_ASSERT(reporter, requestInfo == pmap.info());
232 REPORTER_ASSERT(reporter, requestInfo.minRowBytes() <= pmap.rowBytes());
233 REPORTER_ASSERT(reporter, pmcolor == *pmap.addr32());
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000234
reed6ceeebd2016-03-09 14:26:26 -0800235 REPORTER_ASSERT(reporter, pmap.addr() == pmap2.addr());
236 REPORTER_ASSERT(reporter, pmap.info() == pmap2.info());
237 REPORTER_ASSERT(reporter, pmap.rowBytes() == pmap2.rowBytes());
kkinnunen179a8f52015-11-20 13:32:24 -0800238 } else {
239 REPORTER_ASSERT(reporter, nullptr == addr2);
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000240 }
241}
kkinnunen179a8f52015-11-20 13:32:24 -0800242DEF_TEST(SurfaceCanvasPeek, reporter) {
243 for (auto& surface_func : { &create_surface, &create_direct_surface }) {
244 SkImageInfo requestInfo;
reede8f30622016-03-23 18:59:25 -0700245 auto surface(surface_func(kPremul_SkAlphaType, &requestInfo));
kkinnunen179a8f52015-11-20 13:32:24 -0800246 test_canvas_peek(reporter, surface, requestInfo, true);
247 }
248}
249#if SK_SUPPORT_GPU
egdanielab527a52016-06-28 08:07:26 -0700250DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceCanvasPeek_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800251 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
252 SkImageInfo requestInfo;
bsalomon8b7451a2016-05-11 06:33:06 -0700253 auto surface(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, &requestInfo));
kkinnunen179a8f52015-11-20 13:32:24 -0800254 test_canvas_peek(reporter, surface, requestInfo, false);
255 }
256}
257#endif
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000258
reede8f30622016-03-23 18:59:25 -0700259static void test_snapshot_alphatype(skiatest::Reporter* reporter, const sk_sp<SkSurface>& surface,
brianosman69c166d2016-08-17 14:01:05 -0700260 SkAlphaType expectedAlphaType) {
kkinnunen179a8f52015-11-20 13:32:24 -0800261 REPORTER_ASSERT(reporter, surface);
262 if (surface) {
reed9ce9d672016-03-17 10:51:11 -0700263 sk_sp<SkImage> image(surface->makeImageSnapshot());
kkinnunen179a8f52015-11-20 13:32:24 -0800264 REPORTER_ASSERT(reporter, image);
265 if (image) {
brianosman69c166d2016-08-17 14:01:05 -0700266 REPORTER_ASSERT(reporter, image->alphaType() == expectedAlphaType);
reed41e010c2015-06-09 12:16:53 -0700267 }
268 }
269}
kkinnunen179a8f52015-11-20 13:32:24 -0800270DEF_TEST(SurfaceSnapshotAlphaType, reporter) {
271 for (auto& surface_func : { &create_surface, &create_direct_surface }) {
brianosman69c166d2016-08-17 14:01:05 -0700272 for (auto& at: { kOpaque_SkAlphaType, kPremul_SkAlphaType, kUnpremul_SkAlphaType }) {
273 auto surface(surface_func(at, nullptr));
274 test_snapshot_alphatype(reporter, surface, at);
bsalomon74f681d2015-06-23 14:38:48 -0700275 }
276 }
277}
kkinnunen179a8f52015-11-20 13:32:24 -0800278#if SK_SUPPORT_GPU
egdanielab527a52016-06-28 08:07:26 -0700279DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceSnapshotAlphaType_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800280 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
brianosman69c166d2016-08-17 14:01:05 -0700281 // GPU doesn't support creating unpremul surfaces, so only test opaque + premul
282 for (auto& at : { kOpaque_SkAlphaType, kPremul_SkAlphaType }) {
283 auto surface(surface_func(ctxInfo.grContext(), at, nullptr));
284 test_snapshot_alphatype(reporter, surface, at);
kkinnunen179a8f52015-11-20 13:32:24 -0800285 }
286 }
287}
288#endif
bsalomon74f681d2015-06-23 14:38:48 -0700289
kkinnunen179a8f52015-11-20 13:32:24 -0800290static GrBackendObject get_surface_backend_texture_handle(
291 SkSurface* s, SkSurface::BackendHandleAccess a) {
292 return s->getTextureHandle(a);
293}
294static GrBackendObject get_surface_backend_render_target_handle(
295 SkSurface* s, SkSurface::BackendHandleAccess a) {
296 GrBackendObject result;
297 if (!s->getRenderTargetHandle(&result, a)) {
298 return 0;
299 }
300 return result;
301}
302
303static void test_backend_handle_access_copy_on_write(
304 skiatest::Reporter* reporter, SkSurface* surface, SkSurface::BackendHandleAccess mode,
305 GrBackendObject (*func)(SkSurface*, SkSurface::BackendHandleAccess)) {
fmalitae2639082015-08-06 07:04:51 -0700306 GrBackendObject obj1 = func(surface, mode);
reed9ce9d672016-03-17 10:51:11 -0700307 sk_sp<SkImage> snap1(surface->makeImageSnapshot());
fmalitae2639082015-08-06 07:04:51 -0700308
309 GrBackendObject obj2 = func(surface, mode);
reed9ce9d672016-03-17 10:51:11 -0700310 sk_sp<SkImage> snap2(surface->makeImageSnapshot());
fmalitae2639082015-08-06 07:04:51 -0700311
312 // If the access mode triggers CoW, then the backend objects should reflect it.
313 REPORTER_ASSERT(reporter, (obj1 == obj2) == (snap1 == snap2));
314}
kkinnunen179a8f52015-11-20 13:32:24 -0800315DEF_TEST(SurfaceBackendHandleAccessCopyOnWrite, reporter) {
316 const SkSurface::BackendHandleAccess accessModes[] = {
317 SkSurface::kFlushRead_BackendHandleAccess,
318 SkSurface::kFlushWrite_BackendHandleAccess,
319 SkSurface::kDiscardWrite_BackendHandleAccess,
320 };
321 for (auto& handle_access_func :
322 { &get_surface_backend_texture_handle, &get_surface_backend_render_target_handle }) {
323 for (auto& accessMode : accessModes) {
reede8f30622016-03-23 18:59:25 -0700324 auto surface(create_surface());
325 test_backend_handle_access_copy_on_write(reporter, surface.get(), accessMode,
kkinnunen179a8f52015-11-20 13:32:24 -0800326 handle_access_func);
327 }
328 }
329}
330#if SK_SUPPORT_GPU
bsalomon68d91342016-04-12 09:59:58 -0700331DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceBackendHandleAccessCopyOnWrite_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800332 const SkSurface::BackendHandleAccess accessModes[] = {
333 SkSurface::kFlushRead_BackendHandleAccess,
334 SkSurface::kFlushWrite_BackendHandleAccess,
335 SkSurface::kDiscardWrite_BackendHandleAccess,
336 };
337 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
338 for (auto& handle_access_func :
339 { &get_surface_backend_texture_handle, &get_surface_backend_render_target_handle }) {
340 for (auto& accessMode : accessModes) {
bsalomon8b7451a2016-05-11 06:33:06 -0700341 auto surface(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
reede8f30622016-03-23 18:59:25 -0700342 test_backend_handle_access_copy_on_write(reporter, surface.get(), accessMode,
kkinnunen179a8f52015-11-20 13:32:24 -0800343 handle_access_func);
344 }
345 }
346 }
347}
348#endif
fmalitae2639082015-08-06 07:04:51 -0700349
kkinnunen179a8f52015-11-20 13:32:24 -0800350#if SK_SUPPORT_GPU
kkinnunen179a8f52015-11-20 13:32:24 -0800351
kkinnunen179a8f52015-11-20 13:32:24 -0800352static void test_backend_handle_unique_id(
353 skiatest::Reporter* reporter, SkSurface* surface,
354 GrBackendObject (*func)(SkSurface*, SkSurface::BackendHandleAccess)) {
reed9ce9d672016-03-17 10:51:11 -0700355 sk_sp<SkImage> image0(surface->makeImageSnapshot());
kkinnunen179a8f52015-11-20 13:32:24 -0800356 GrBackendObject obj = func(surface, SkSurface::kFlushRead_BackendHandleAccess);
357 REPORTER_ASSERT(reporter, obj != 0);
reed9ce9d672016-03-17 10:51:11 -0700358 sk_sp<SkImage> image1(surface->makeImageSnapshot());
kkinnunen179a8f52015-11-20 13:32:24 -0800359 // just read access should not affect the snapshot
360 REPORTER_ASSERT(reporter, image0->uniqueID() == image1->uniqueID());
361
362 obj = func(surface, SkSurface::kFlushWrite_BackendHandleAccess);
363 REPORTER_ASSERT(reporter, obj != 0);
reed9ce9d672016-03-17 10:51:11 -0700364 sk_sp<SkImage> image2(surface->makeImageSnapshot());
kkinnunen179a8f52015-11-20 13:32:24 -0800365 // expect a new image, since we claimed we would write
366 REPORTER_ASSERT(reporter, image0->uniqueID() != image2->uniqueID());
367
368 obj = func(surface, SkSurface::kDiscardWrite_BackendHandleAccess);
369 REPORTER_ASSERT(reporter, obj != 0);
reed9ce9d672016-03-17 10:51:11 -0700370 sk_sp<SkImage> image3(surface->makeImageSnapshot());
kkinnunen179a8f52015-11-20 13:32:24 -0800371 // expect a new(er) image, since we claimed we would write
372 REPORTER_ASSERT(reporter, image0->uniqueID() != image3->uniqueID());
373 REPORTER_ASSERT(reporter, image2->uniqueID() != image3->uniqueID());
374}
375// No CPU test.
bsalomon68d91342016-04-12 09:59:58 -0700376DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceBackendHandleAccessIDs_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800377 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
robertphillips1f3923e2016-07-21 07:17:54 -0700378 for (auto& test_func : { &test_backend_handle_unique_id }) {
kkinnunen179a8f52015-11-20 13:32:24 -0800379 for (auto& handle_access_func :
380 { &get_surface_backend_texture_handle, &get_surface_backend_render_target_handle}) {
bsalomon8b7451a2016-05-11 06:33:06 -0700381 auto surface(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
reede8f30622016-03-23 18:59:25 -0700382 test_func(reporter, surface.get(), handle_access_func);
kkinnunen179a8f52015-11-20 13:32:24 -0800383 }
384 }
385 }
386}
387#endif
388
389// Verify that the right canvas commands trigger a copy on write.
390static void test_copy_on_write(skiatest::Reporter* reporter, SkSurface* surface) {
junov@chromium.org995beb62013-03-28 13:49:22 +0000391 SkCanvas* canvas = surface->getCanvas();
392
393 const SkRect testRect =
394 SkRect::MakeXYWH(SkIntToScalar(0), SkIntToScalar(0),
395 SkIntToScalar(4), SkIntToScalar(5));
junov@chromium.org995beb62013-03-28 13:49:22 +0000396 SkPath testPath;
397 testPath.addRect(SkRect::MakeXYWH(SkIntToScalar(0), SkIntToScalar(0),
398 SkIntToScalar(2), SkIntToScalar(1)));
399
400 const SkIRect testIRect = SkIRect::MakeXYWH(0, 0, 2, 1);
401
402 SkRegion testRegion;
403 testRegion.setRect(testIRect);
404
405
406 const SkColor testColor = 0x01020304;
407 const SkPaint testPaint;
408 const SkPoint testPoints[3] = {
409 {SkIntToScalar(0), SkIntToScalar(0)},
410 {SkIntToScalar(2), SkIntToScalar(1)},
411 {SkIntToScalar(0), SkIntToScalar(2)}
412 };
413 const size_t testPointCount = 3;
414
415 SkBitmap testBitmap;
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +0000416 testBitmap.allocN32Pixels(10, 10);
robertphillips@google.comd1ce77d2013-10-09 12:51:09 +0000417 testBitmap.eraseColor(0);
junov@chromium.org995beb62013-03-28 13:49:22 +0000418
419 SkRRect testRRect;
420 testRRect.setRectXY(testRect, SK_Scalar1, SK_Scalar1);
421
422 SkString testText("Hello World");
423 const SkPoint testPoints2[] = {
424 { SkIntToScalar(0), SkIntToScalar(1) },
425 { SkIntToScalar(1), SkIntToScalar(1) },
426 { SkIntToScalar(2), SkIntToScalar(1) },
427 { SkIntToScalar(3), SkIntToScalar(1) },
428 { SkIntToScalar(4), SkIntToScalar(1) },
429 { SkIntToScalar(5), SkIntToScalar(1) },
430 { SkIntToScalar(6), SkIntToScalar(1) },
431 { SkIntToScalar(7), SkIntToScalar(1) },
432 { SkIntToScalar(8), SkIntToScalar(1) },
433 { SkIntToScalar(9), SkIntToScalar(1) },
434 { SkIntToScalar(10), SkIntToScalar(1) },
435 };
436
437#define EXPECT_COPY_ON_WRITE(command) \
438 { \
reed9ce9d672016-03-17 10:51:11 -0700439 sk_sp<SkImage> imageBefore = surface->makeImageSnapshot(); \
440 sk_sp<SkImage> aur_before(imageBefore); \
junov@chromium.org995beb62013-03-28 13:49:22 +0000441 canvas-> command ; \
reed9ce9d672016-03-17 10:51:11 -0700442 sk_sp<SkImage> imageAfter = surface->makeImageSnapshot(); \
443 sk_sp<SkImage> aur_after(imageAfter); \
junov@chromium.org995beb62013-03-28 13:49:22 +0000444 REPORTER_ASSERT(reporter, imageBefore != imageAfter); \
445 }
446
447 EXPECT_COPY_ON_WRITE(clear(testColor))
448 EXPECT_COPY_ON_WRITE(drawPaint(testPaint))
449 EXPECT_COPY_ON_WRITE(drawPoints(SkCanvas::kPoints_PointMode, testPointCount, testPoints, \
450 testPaint))
451 EXPECT_COPY_ON_WRITE(drawOval(testRect, testPaint))
452 EXPECT_COPY_ON_WRITE(drawRect(testRect, testPaint))
453 EXPECT_COPY_ON_WRITE(drawRRect(testRRect, testPaint))
454 EXPECT_COPY_ON_WRITE(drawPath(testPath, testPaint))
455 EXPECT_COPY_ON_WRITE(drawBitmap(testBitmap, 0, 0))
reede47829b2015-08-06 10:02:53 -0700456 EXPECT_COPY_ON_WRITE(drawBitmapRect(testBitmap, testRect, nullptr))
halcanary96fcdcc2015-08-27 07:41:13 -0700457 EXPECT_COPY_ON_WRITE(drawBitmapNine(testBitmap, testIRect, testRect, nullptr))
Cary Clark2a475ea2017-04-28 15:35:12 -0400458 EXPECT_COPY_ON_WRITE(drawString(testText, 0, 1, testPaint))
junov@chromium.org995beb62013-03-28 13:49:22 +0000459 EXPECT_COPY_ON_WRITE(drawPosText(testText.c_str(), testText.size(), testPoints2, \
460 testPaint))
halcanary96fcdcc2015-08-27 07:41:13 -0700461 EXPECT_COPY_ON_WRITE(drawTextOnPath(testText.c_str(), testText.size(), testPath, nullptr, \
junov@chromium.org995beb62013-03-28 13:49:22 +0000462 testPaint))
kkinnunen179a8f52015-11-20 13:32:24 -0800463}
464DEF_TEST(SurfaceCopyOnWrite, reporter) {
reede8f30622016-03-23 18:59:25 -0700465 test_copy_on_write(reporter, create_surface().get());
kkinnunen179a8f52015-11-20 13:32:24 -0800466}
467#if SK_SUPPORT_GPU
egdanielab527a52016-06-28 08:07:26 -0700468DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceCopyOnWrite_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800469 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
bsalomon8b7451a2016-05-11 06:33:06 -0700470 auto surface(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
reede8f30622016-03-23 18:59:25 -0700471 test_copy_on_write(reporter, surface.get());
fmalitae2639082015-08-06 07:04:51 -0700472 }
junov@chromium.org995beb62013-03-28 13:49:22 +0000473}
kkinnunen179a8f52015-11-20 13:32:24 -0800474#endif
junov@chromium.org995beb62013-03-28 13:49:22 +0000475
kkinnunen179a8f52015-11-20 13:32:24 -0800476static void test_writable_after_snapshot_release(skiatest::Reporter* reporter,
477 SkSurface* surface) {
junov@chromium.orgaf058352013-04-03 15:03:26 +0000478 // This test succeeds by not triggering an assertion.
479 // The test verifies that the surface remains writable (usable) after
480 // acquiring and releasing a snapshot without triggering a copy on write.
junov@chromium.orgaf058352013-04-03 15:03:26 +0000481 SkCanvas* canvas = surface->getCanvas();
482 canvas->clear(1);
reed9ce9d672016-03-17 10:51:11 -0700483 surface->makeImageSnapshot(); // Create and destroy SkImage
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000484 canvas->clear(2); // Must not assert internally
junov@chromium.org995beb62013-03-28 13:49:22 +0000485}
kkinnunen179a8f52015-11-20 13:32:24 -0800486DEF_TEST(SurfaceWriteableAfterSnapshotRelease, reporter) {
reede8f30622016-03-23 18:59:25 -0700487 test_writable_after_snapshot_release(reporter, create_surface().get());
kkinnunen179a8f52015-11-20 13:32:24 -0800488}
489#if SK_SUPPORT_GPU
egdanielab527a52016-06-28 08:07:26 -0700490DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceWriteableAfterSnapshotRelease_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800491 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
bsalomon8b7451a2016-05-11 06:33:06 -0700492 auto surface(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
reede8f30622016-03-23 18:59:25 -0700493 test_writable_after_snapshot_release(reporter, surface.get());
kkinnunen179a8f52015-11-20 13:32:24 -0800494 }
495}
496#endif
junov@chromium.orgda904742013-05-01 22:38:16 +0000497
junov@chromium.orgb516a412013-05-01 22:49:59 +0000498#if SK_SUPPORT_GPU
kkinnunen179a8f52015-11-20 13:32:24 -0800499static void test_crbug263329(skiatest::Reporter* reporter,
500 SkSurface* surface1,
501 SkSurface* surface2) {
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000502 // This is a regression test for crbug.com/263329
503 // Bug was caused by onCopyOnWrite releasing the old surface texture
504 // back to the scratch texture pool even though the texture is used
505 // by and active SkImage_Gpu.
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000506 SkCanvas* canvas1 = surface1->getCanvas();
507 SkCanvas* canvas2 = surface2->getCanvas();
508 canvas1->clear(1);
reed9ce9d672016-03-17 10:51:11 -0700509 sk_sp<SkImage> image1(surface1->makeImageSnapshot());
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000510 // Trigger copy on write, new backing is a scratch texture
511 canvas1->clear(2);
reed9ce9d672016-03-17 10:51:11 -0700512 sk_sp<SkImage> image2(surface1->makeImageSnapshot());
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000513 // Trigger copy on write, old backing should not be returned to scratch
514 // pool because it is held by image2
515 canvas1->clear(3);
516
517 canvas2->clear(4);
reed9ce9d672016-03-17 10:51:11 -0700518 sk_sp<SkImage> image3(surface2->makeImageSnapshot());
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000519 // Trigger copy on write on surface2. The new backing store should not
520 // be recycling a texture that is held by an existing image.
521 canvas2->clear(5);
reed9ce9d672016-03-17 10:51:11 -0700522 sk_sp<SkImage> image4(surface2->makeImageSnapshot());
Robert Phillips87444052017-06-23 14:09:30 -0400523 REPORTER_ASSERT(reporter, as_IB(image4)->getTexture() != as_IB(image3)->getTexture());
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000524 // The following assertion checks crbug.com/263329
Robert Phillips87444052017-06-23 14:09:30 -0400525 REPORTER_ASSERT(reporter, as_IB(image4)->getTexture() != as_IB(image2)->getTexture());
526 REPORTER_ASSERT(reporter, as_IB(image4)->getTexture() != as_IB(image1)->getTexture());
527 REPORTER_ASSERT(reporter, as_IB(image3)->getTexture() != as_IB(image2)->getTexture());
528 REPORTER_ASSERT(reporter, as_IB(image3)->getTexture() != as_IB(image1)->getTexture());
529 REPORTER_ASSERT(reporter, as_IB(image2)->getTexture() != as_IB(image1)->getTexture());
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000530}
egdanielab527a52016-06-28 08:07:26 -0700531DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceCRBug263329_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800532 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
bsalomon8b7451a2016-05-11 06:33:06 -0700533 auto surface1(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
534 auto surface2(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
reede8f30622016-03-23 18:59:25 -0700535 test_crbug263329(reporter, surface1.get(), surface2.get());
kkinnunen179a8f52015-11-20 13:32:24 -0800536 }
537}
538#endif
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000539
kkinnunen179a8f52015-11-20 13:32:24 -0800540DEF_TEST(SurfaceGetTexture, reporter) {
reede8f30622016-03-23 18:59:25 -0700541 auto surface(create_surface());
reed9ce9d672016-03-17 10:51:11 -0700542 sk_sp<SkImage> image(surface->makeImageSnapshot());
Robert Phillips6de99042017-01-31 11:31:39 -0500543 REPORTER_ASSERT(reporter, !as_IB(image)->isTextureBacked());
kkinnunen179a8f52015-11-20 13:32:24 -0800544 surface->notifyContentWillChange(SkSurface::kDiscard_ContentChangeMode);
Robert Phillips6de99042017-01-31 11:31:39 -0500545 REPORTER_ASSERT(reporter, !as_IB(image)->isTextureBacked());
kkinnunen179a8f52015-11-20 13:32:24 -0800546}
547#if SK_SUPPORT_GPU
egdanielab527a52016-06-28 08:07:26 -0700548DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfacepeekTexture_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800549 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
bsalomon8b7451a2016-05-11 06:33:06 -0700550 auto surface(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
reed9ce9d672016-03-17 10:51:11 -0700551 sk_sp<SkImage> image(surface->makeImageSnapshot());
Robert Phillips6de99042017-01-31 11:31:39 -0500552
553 REPORTER_ASSERT(reporter, as_IB(image)->isTextureBacked());
Robert Phillipsc5509952018-04-04 15:54:55 -0400554 GrBackendTexture backendTex = image->getBackendTexture(false);
555 REPORTER_ASSERT(reporter, backendTex.isValid());
kkinnunen179a8f52015-11-20 13:32:24 -0800556 surface->notifyContentWillChange(SkSurface::kDiscard_ContentChangeMode);
Robert Phillips6de99042017-01-31 11:31:39 -0500557 REPORTER_ASSERT(reporter, as_IB(image)->isTextureBacked());
Robert Phillipsc5509952018-04-04 15:54:55 -0400558 GrBackendTexture backendTex2 = image->getBackendTexture(false);
559 REPORTER_ASSERT(reporter, GrBackendTexture::TestingOnly_Equals(backendTex, backendTex2));
junov@chromium.orgda904742013-05-01 22:38:16 +0000560 }
junov@chromium.orgda904742013-05-01 22:38:16 +0000561}
kkinnunen179a8f52015-11-20 13:32:24 -0800562#endif
bsalomoneaaaf0b2015-01-23 08:08:04 -0800563
kkinnunen179a8f52015-11-20 13:32:24 -0800564#if SK_SUPPORT_GPU
bsalomoneaaaf0b2015-01-23 08:08:04 -0800565
reede8f30622016-03-23 18:59:25 -0700566static SkBudgeted is_budgeted(const sk_sp<SkSurface>& surf) {
567 SkSurface_Gpu* gsurf = (SkSurface_Gpu*)surf.get();
Robert Phillips6de99042017-01-31 11:31:39 -0500568
569 GrRenderTargetProxy* proxy = gsurf->getDevice()->accessRenderTargetContext()
570 ->asRenderTargetProxy();
571 return proxy->isBudgeted();
bsalomoneaaaf0b2015-01-23 08:08:04 -0800572}
573
bsalomon5ec26ae2016-02-25 08:33:02 -0800574static SkBudgeted is_budgeted(SkImage* image) {
Robert Phillips0ae6faa2017-03-21 16:22:00 -0400575 return ((SkImage_Gpu*)image)->peekProxy()->isBudgeted();
bsalomoneaaaf0b2015-01-23 08:08:04 -0800576}
577
reed9ce9d672016-03-17 10:51:11 -0700578static SkBudgeted is_budgeted(const sk_sp<SkImage> image) {
579 return is_budgeted(image.get());
580}
581
egdanielab527a52016-06-28 08:07:26 -0700582DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceBudget, reporter, ctxInfo) {
bsalomoneaaaf0b2015-01-23 08:08:04 -0800583 SkImageInfo info = SkImageInfo::MakeN32Premul(8,8);
Robert Phillipsac6b1fa2017-03-20 08:38:50 -0400584 for (auto budgeted : { SkBudgeted::kNo, SkBudgeted::kYes }) {
585 auto surface(SkSurface::MakeRenderTarget(ctxInfo.grContext(), budgeted, info));
586 SkASSERT(surface);
587 REPORTER_ASSERT(reporter, budgeted == is_budgeted(surface));
bsalomoneaaaf0b2015-01-23 08:08:04 -0800588
Robert Phillipsac6b1fa2017-03-20 08:38:50 -0400589 sk_sp<SkImage> image(surface->makeImageSnapshot());
bsalomoneaaaf0b2015-01-23 08:08:04 -0800590
Robert Phillipsac6b1fa2017-03-20 08:38:50 -0400591 // Initially the image shares a texture with the surface, and the
592 // the budgets should always match.
593 REPORTER_ASSERT(reporter, budgeted == is_budgeted(surface));
594 REPORTER_ASSERT(reporter, budgeted == is_budgeted(image));
bsalomoneaaaf0b2015-01-23 08:08:04 -0800595
Robert Phillipsac6b1fa2017-03-20 08:38:50 -0400596 // Now trigger copy-on-write
597 surface->getCanvas()->clear(SK_ColorBLUE);
bsalomoneaaaf0b2015-01-23 08:08:04 -0800598
Robert Phillipsac6b1fa2017-03-20 08:38:50 -0400599 // They don't share a texture anymore but the budgets should still match.
600 REPORTER_ASSERT(reporter, budgeted == is_budgeted(surface));
601 REPORTER_ASSERT(reporter, budgeted == is_budgeted(image));
bsalomoneaaaf0b2015-01-23 08:08:04 -0800602 }
603}
junov@chromium.orgb516a412013-05-01 22:49:59 +0000604#endif
junov@chromium.orgda904742013-05-01 22:38:16 +0000605
kkinnunen179a8f52015-11-20 13:32:24 -0800606static void test_no_canvas1(skiatest::Reporter* reporter,
607 SkSurface* surface,
608 SkSurface::ContentChangeMode mode) {
609 // Test passes by not asserting
610 surface->notifyContentWillChange(mode);
611 SkDEBUGCODE(surface->validate();)
612}
613static void test_no_canvas2(skiatest::Reporter* reporter,
614 SkSurface* surface,
615 SkSurface::ContentChangeMode mode) {
junov@chromium.orgacea3ef2013-04-16 19:41:09 +0000616 // Verifies the robustness of SkSurface for handling use cases where calls
617 // are made before a canvas is created.
reed9ce9d672016-03-17 10:51:11 -0700618 sk_sp<SkImage> image1 = surface->makeImageSnapshot();
619 sk_sp<SkImage> aur_image1(image1);
kkinnunen179a8f52015-11-20 13:32:24 -0800620 SkDEBUGCODE(image1->validate();)
621 SkDEBUGCODE(surface->validate();)
622 surface->notifyContentWillChange(mode);
623 SkDEBUGCODE(image1->validate();)
624 SkDEBUGCODE(surface->validate();)
reed9ce9d672016-03-17 10:51:11 -0700625 sk_sp<SkImage> image2 = surface->makeImageSnapshot();
626 sk_sp<SkImage> aur_image2(image2);
kkinnunen179a8f52015-11-20 13:32:24 -0800627 SkDEBUGCODE(image2->validate();)
628 SkDEBUGCODE(surface->validate();)
629 REPORTER_ASSERT(reporter, image1 != image2);
junov@chromium.orgacea3ef2013-04-16 19:41:09 +0000630}
kkinnunen179a8f52015-11-20 13:32:24 -0800631DEF_TEST(SurfaceNoCanvas, reporter) {
632 SkSurface::ContentChangeMode modes[] =
633 { SkSurface::kDiscard_ContentChangeMode, SkSurface::kRetain_ContentChangeMode};
634 for (auto& test_func : { &test_no_canvas1, &test_no_canvas2 }) {
635 for (auto& mode : modes) {
reede8f30622016-03-23 18:59:25 -0700636 test_func(reporter, create_surface().get(), mode);
kkinnunen179a8f52015-11-20 13:32:24 -0800637 }
638 }
639}
junov@chromium.orgb516a412013-05-01 22:49:59 +0000640#if SK_SUPPORT_GPU
egdanielab527a52016-06-28 08:07:26 -0700641DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceNoCanvas_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800642 SkSurface::ContentChangeMode modes[] =
643 { SkSurface::kDiscard_ContentChangeMode, SkSurface::kRetain_ContentChangeMode};
644 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
645 for (auto& test_func : { &test_no_canvas1, &test_no_canvas2 }) {
646 for (auto& mode : modes) {
bsalomon8b7451a2016-05-11 06:33:06 -0700647 auto surface(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
reede8f30622016-03-23 18:59:25 -0700648 test_func(reporter, surface.get(), mode);
bsalomone904c092014-07-17 10:50:59 -0700649 }
robertphillips@google.com3bddb382013-11-12 13:51:03 +0000650 }
junov@chromium.orgaf058352013-04-03 15:03:26 +0000651 }
junov@chromium.org995beb62013-03-28 13:49:22 +0000652}
kkinnunen179a8f52015-11-20 13:32:24 -0800653#endif
reed9cd016e2016-01-30 10:01:06 -0800654
655static void check_rowbytes_remain_consistent(SkSurface* surface, skiatest::Reporter* reporter) {
reed6ceeebd2016-03-09 14:26:26 -0800656 SkPixmap surfacePM;
657 REPORTER_ASSERT(reporter, surface->peekPixels(&surfacePM));
reed9cd016e2016-01-30 10:01:06 -0800658
reed9ce9d672016-03-17 10:51:11 -0700659 sk_sp<SkImage> image(surface->makeImageSnapshot());
reed6ceeebd2016-03-09 14:26:26 -0800660 SkPixmap pm;
661 REPORTER_ASSERT(reporter, image->peekPixels(&pm));
reed9cd016e2016-01-30 10:01:06 -0800662
reed6ceeebd2016-03-09 14:26:26 -0800663 REPORTER_ASSERT(reporter, surfacePM.rowBytes() == pm.rowBytes());
reed9cd016e2016-01-30 10:01:06 -0800664
665 // trigger a copy-on-write
666 surface->getCanvas()->drawPaint(SkPaint());
reed9ce9d672016-03-17 10:51:11 -0700667 sk_sp<SkImage> image2(surface->makeImageSnapshot());
reed9cd016e2016-01-30 10:01:06 -0800668 REPORTER_ASSERT(reporter, image->uniqueID() != image2->uniqueID());
669
reed6ceeebd2016-03-09 14:26:26 -0800670 SkPixmap pm2;
671 REPORTER_ASSERT(reporter, image2->peekPixels(&pm2));
672 REPORTER_ASSERT(reporter, pm2.rowBytes() == pm.rowBytes());
reed9cd016e2016-01-30 10:01:06 -0800673}
674
675DEF_TEST(surface_rowbytes, reporter) {
676 const SkImageInfo info = SkImageInfo::MakeN32Premul(100, 100);
677
reede8f30622016-03-23 18:59:25 -0700678 auto surf0(SkSurface::MakeRaster(info));
679 check_rowbytes_remain_consistent(surf0.get(), reporter);
reed9cd016e2016-01-30 10:01:06 -0800680
681 // specify a larger rowbytes
reede8f30622016-03-23 18:59:25 -0700682 auto surf1(SkSurface::MakeRaster(info, 500, nullptr));
683 check_rowbytes_remain_consistent(surf1.get(), reporter);
reed9cd016e2016-01-30 10:01:06 -0800684
685 // Try some illegal rowByte values
reede8f30622016-03-23 18:59:25 -0700686 auto s = SkSurface::MakeRaster(info, 396, nullptr); // needs to be at least 400
reed9cd016e2016-01-30 10:01:06 -0800687 REPORTER_ASSERT(reporter, nullptr == s);
Mike Reedf0ffb892017-10-03 14:47:21 -0400688 s = SkSurface::MakeRaster(info, std::numeric_limits<size_t>::max(), nullptr);
reed9cd016e2016-01-30 10:01:06 -0800689 REPORTER_ASSERT(reporter, nullptr == s);
690}
bsalomone63ffef2016-02-05 07:17:34 -0800691
fmalita03912f12016-07-06 06:22:06 -0700692DEF_TEST(surface_raster_zeroinitialized, reporter) {
693 sk_sp<SkSurface> s(SkSurface::MakeRasterN32Premul(100, 100));
694 SkPixmap pixmap;
695 REPORTER_ASSERT(reporter, s->peekPixels(&pixmap));
696
697 for (int i = 0; i < pixmap.info().width(); ++i) {
698 for (int j = 0; j < pixmap.info().height(); ++j) {
699 REPORTER_ASSERT(reporter, *pixmap.addr32(i, j) == 0);
700 }
701 }
702}
703
bsalomone63ffef2016-02-05 07:17:34 -0800704#if SK_SUPPORT_GPU
ericrkc4025182016-05-04 12:01:58 -0700705static sk_sp<SkSurface> create_gpu_surface_backend_texture(
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500706 GrContext* context, int sampleCnt, uint32_t color, GrBackendTexture* outTexture) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500707 GrGpu* gpu = context->contextPriv().getGpu();
708
ericrkc4025182016-05-04 12:01:58 -0700709 const int kWidth = 10;
710 const int kHeight = 10;
Ben Wagner7ecc5962016-11-02 17:07:33 -0400711 std::unique_ptr<uint32_t[]> pixels(new uint32_t[kWidth * kHeight]);
ericrkc4025182016-05-04 12:01:58 -0700712 sk_memset32(pixels.get(), color, kWidth * kHeight);
Greg Daniel7ef28f32017-04-20 16:41:55 +0000713
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500714 *outTexture = gpu->createTestingOnlyBackendTexture(
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500715 pixels.get(), kWidth, kHeight, kRGBA_8888_GrPixelConfig, true, GrMipMapped::kNo);
Greg Daniel7ef28f32017-04-20 16:41:55 +0000716
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500717 if (!outTexture->isValid() || !gpu->isTestingOnlyBackendTexture(*outTexture)) {
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500718 return nullptr;
719 }
Greg Daniel7ef28f32017-04-20 16:41:55 +0000720
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500721 sk_sp<SkSurface> surface = SkSurface::MakeFromBackendTexture(context, *outTexture,
Robert Phillipse44ef102017-07-21 15:37:19 -0400722 kTopLeft_GrSurfaceOrigin, sampleCnt,
Greg Danielfaa095e2017-12-19 13:15:02 -0500723 kRGBA_8888_SkColorType,
Greg Daniel7ef28f32017-04-20 16:41:55 +0000724 nullptr, nullptr);
ericrkc4025182016-05-04 12:01:58 -0700725 if (!surface) {
Brian Salomon26102cb2018-03-09 09:33:19 -0500726 gpu->deleteTestingOnlyBackendTexture(*outTexture);
ericrkc4025182016-05-04 12:01:58 -0700727 return nullptr;
728 }
ericrkc4025182016-05-04 12:01:58 -0700729 return surface;
730}
bsalomone63ffef2016-02-05 07:17:34 -0800731
ericrkc4025182016-05-04 12:01:58 -0700732static sk_sp<SkSurface> create_gpu_surface_backend_texture_as_render_target(
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500733 GrContext* context, int sampleCnt, uint32_t color, GrBackendTexture* outTexture) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500734 GrGpu* gpu = context->contextPriv().getGpu();
735
ericrkc4025182016-05-04 12:01:58 -0700736 const int kWidth = 10;
737 const int kHeight = 10;
Ben Wagner7ecc5962016-11-02 17:07:33 -0400738 std::unique_ptr<uint32_t[]> pixels(new uint32_t[kWidth * kHeight]);
ericrkc4025182016-05-04 12:01:58 -0700739 sk_memset32(pixels.get(), color, kWidth * kHeight);
Greg Daniel7ef28f32017-04-20 16:41:55 +0000740
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500741 *outTexture = gpu->createTestingOnlyBackendTexture(
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500742 pixels.get(), kWidth, kHeight, kRGBA_8888_GrPixelConfig, true, GrMipMapped::kNo);
Greg Daniel7ef28f32017-04-20 16:41:55 +0000743
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500744 if (!outTexture->isValid() || !gpu->isTestingOnlyBackendTexture(*outTexture)) {
ericrkc4025182016-05-04 12:01:58 -0700745 return nullptr;
746 }
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500747
748 sk_sp<SkSurface> surface = SkSurface::MakeFromBackendTextureAsRenderTarget(
Greg Danielfaa095e2017-12-19 13:15:02 -0500749 context, *outTexture, kTopLeft_GrSurfaceOrigin, sampleCnt, kRGBA_8888_SkColorType,
750 nullptr, nullptr);
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500751
752 if (!surface) {
Brian Salomon26102cb2018-03-09 09:33:19 -0500753 gpu->deleteTestingOnlyBackendTexture(*outTexture);
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500754 return nullptr;
755 }
ericrkc4025182016-05-04 12:01:58 -0700756 return surface;
757}
758
759static void test_surface_clear(skiatest::Reporter* reporter, sk_sp<SkSurface> surface,
Robert Phillips2c862492017-01-18 10:08:39 -0500760 std::function<sk_sp<GrSurfaceContext>(SkSurface*)> grSurfaceGetter,
ericrkc4025182016-05-04 12:01:58 -0700761 uint32_t expectedValue) {
bsalomone63ffef2016-02-05 07:17:34 -0800762 if (!surface) {
763 ERRORF(reporter, "Could not create GPU SkSurface.");
764 return;
765 }
766 int w = surface->width();
767 int h = surface->height();
Ben Wagner7ecc5962016-11-02 17:07:33 -0400768 std::unique_ptr<uint32_t[]> pixels(new uint32_t[w * h]);
ericrkc4025182016-05-04 12:01:58 -0700769 sk_memset32(pixels.get(), ~expectedValue, w * h);
bsalomone63ffef2016-02-05 07:17:34 -0800770
Robert Phillips2c862492017-01-18 10:08:39 -0500771 sk_sp<GrSurfaceContext> grSurfaceContext(grSurfaceGetter(surface.get()));
772 if (!grSurfaceContext) {
bsalomone63ffef2016-02-05 07:17:34 -0800773 ERRORF(reporter, "Could access render target of GPU SkSurface.");
774 return;
775 }
bsalomon2fba8092016-02-05 13:47:06 -0800776 surface.reset();
Robert Phillips2c862492017-01-18 10:08:39 -0500777
778 SkImageInfo ii = SkImageInfo::Make(w, h, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
779 grSurfaceContext->readPixels(ii, pixels.get(), 0, 0, 0);
bsalomone63ffef2016-02-05 07:17:34 -0800780 for (int y = 0; y < h; ++y) {
781 for (int x = 0; x < w; ++x) {
782 uint32_t pixel = pixels.get()[y * w + x];
783 if (pixel != expectedValue) {
784 SkString msg;
785 if (expectedValue) {
786 msg = "SkSurface should have left render target unmodified";
787 } else {
788 msg = "SkSurface should have cleared the render target";
789 }
790 ERRORF(reporter,
791 "%s but read 0x%08x (instead of 0x%08x) at %x,%d", msg.c_str(), pixel,
792 expectedValue, x, y);
793 return;
794 }
795 }
796 }
797}
798
bsalomon758586c2016-04-06 14:02:39 -0700799DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(SurfaceClear_Gpu, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -0700800 GrContext* context = ctxInfo.grContext();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500801 GrGpu* gpu = context->contextPriv().getGpu();
ericrkc4025182016-05-04 12:01:58 -0700802
Robert Phillips2c862492017-01-18 10:08:39 -0500803 std::function<sk_sp<GrSurfaceContext>(SkSurface*)> grSurfaceContextGetters[] = {
egdanielab527a52016-06-28 08:07:26 -0700804 [] (SkSurface* s){
Robert Phillips2c862492017-01-18 10:08:39 -0500805 return sk_ref_sp(s->getCanvas()->internal_private_accessTopLayerRenderTargetContext());
806 },
807 [] (SkSurface* s){
808 sk_sp<SkImage> i(s->makeImageSnapshot());
809 SkImage_Gpu* gpuImage = (SkImage_Gpu *) as_IB(i);
Robert Phillips6de99042017-01-31 11:31:39 -0500810 sk_sp<GrTextureProxy> proxy = gpuImage->asTextureProxyRef();
Robert Phillips2c862492017-01-18 10:08:39 -0500811 GrContext* context = gpuImage->context();
812 return context->contextPriv().makeWrappedSurfaceContext(std::move(proxy),
813 gpuImage->refColorSpace());
814 }
bsalomone63ffef2016-02-05 07:17:34 -0800815 };
ericrkc4025182016-05-04 12:01:58 -0700816
Robert Phillips2c862492017-01-18 10:08:39 -0500817 for (auto grSurfaceGetter : grSurfaceContextGetters) {
ericrkc4025182016-05-04 12:01:58 -0700818 // Test that non-wrapped RTs are created clear.
bsalomone63ffef2016-02-05 07:17:34 -0800819 for (auto& surface_func : {&create_gpu_surface, &create_gpu_scratch_surface}) {
reede8f30622016-03-23 18:59:25 -0700820 auto surface = surface_func(context, kPremul_SkAlphaType, nullptr);
bsalomone63ffef2016-02-05 07:17:34 -0800821 test_surface_clear(reporter, surface, grSurfaceGetter, 0x0);
822 }
823 // Wrapped RTs are *not* supposed to clear (to allow client to partially update a surface).
ericrkc4025182016-05-04 12:01:58 -0700824 const uint32_t kOrigColor = 0xABABABAB;
825 for (auto& surfaceFunc : {&create_gpu_surface_backend_texture,
826 &create_gpu_surface_backend_texture_as_render_target}) {
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500827 GrBackendTexture backendTex;
Brian Salomonbdecacf2018-02-02 20:32:49 -0500828 auto surface = surfaceFunc(context, 1, kOrigColor, &backendTex);
ericrkc4025182016-05-04 12:01:58 -0700829 test_surface_clear(reporter, surface, grSurfaceGetter, kOrigColor);
830 surface.reset();
Brian Salomon26102cb2018-03-09 09:33:19 -0500831 gpu->deleteTestingOnlyBackendTexture(backendTex);
ericrkc4025182016-05-04 12:01:58 -0700832 }
833 }
834}
bsalomone63ffef2016-02-05 07:17:34 -0800835
ericrkc4025182016-05-04 12:01:58 -0700836static void test_surface_draw_partially(
837 skiatest::Reporter* reporter, sk_sp<SkSurface> surface, uint32_t origColor) {
838 const int kW = surface->width();
839 const int kH = surface->height();
840 SkPaint paint;
841 const SkColor kRectColor = ~origColor | 0xFF000000;
842 paint.setColor(kRectColor);
843 surface->getCanvas()->drawRect(SkRect::MakeWH(SkIntToScalar(kW), SkIntToScalar(kH)/2),
844 paint);
Ben Wagner7ecc5962016-11-02 17:07:33 -0400845 std::unique_ptr<uint32_t[]> pixels(new uint32_t[kW * kH]);
ericrkc4025182016-05-04 12:01:58 -0700846 sk_memset32(pixels.get(), ~origColor, kW * kH);
847 // Read back RGBA to avoid format conversions that may not be supported on all platforms.
848 SkImageInfo readInfo = SkImageInfo::Make(kW, kH, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
849 SkAssertResult(surface->readPixels(readInfo, pixels.get(), kW * sizeof(uint32_t), 0, 0));
850 bool stop = false;
851 SkPMColor origColorPM = SkPackARGB_as_RGBA((origColor >> 24 & 0xFF),
852 (origColor >> 0 & 0xFF),
853 (origColor >> 8 & 0xFF),
854 (origColor >> 16 & 0xFF));
855 SkPMColor rectColorPM = SkPackARGB_as_RGBA((kRectColor >> 24 & 0xFF),
856 (kRectColor >> 16 & 0xFF),
857 (kRectColor >> 8 & 0xFF),
858 (kRectColor >> 0 & 0xFF));
859 for (int y = 0; y < kH/2 && !stop; ++y) {
860 for (int x = 0; x < kW && !stop; ++x) {
861 REPORTER_ASSERT(reporter, rectColorPM == pixels[x + y * kW]);
862 if (rectColorPM != pixels[x + y * kW]) {
863 stop = true;
864 }
865 }
866 }
867 stop = false;
868 for (int y = kH/2; y < kH && !stop; ++y) {
869 for (int x = 0; x < kW && !stop; ++x) {
870 REPORTER_ASSERT(reporter, origColorPM == pixels[x + y * kW]);
871 if (origColorPM != pixels[x + y * kW]) {
872 stop = true;
873 }
874 }
875 }
876}
bsalomone63ffef2016-02-05 07:17:34 -0800877
egdanielab527a52016-06-28 08:07:26 -0700878DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfacePartialDraw_Gpu, reporter, ctxInfo) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500879 GrGpu* gpu = ctxInfo.grContext()->contextPriv().getGpu();
ericrkc4025182016-05-04 12:01:58 -0700880 if (!gpu) {
881 return;
882 }
883 static const uint32_t kOrigColor = 0xFFAABBCC;
bsalomone63ffef2016-02-05 07:17:34 -0800884
ericrkc4025182016-05-04 12:01:58 -0700885 for (auto& surfaceFunc : {&create_gpu_surface_backend_texture,
886 &create_gpu_surface_backend_texture_as_render_target}) {
887 // Validate that we can draw to the canvas and that the original texture color is
888 // preserved in pixels that aren't rendered to via the surface.
889 // This works only for non-multisampled case.
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500890 GrBackendTexture backendTex;
Brian Salomonbdecacf2018-02-02 20:32:49 -0500891 auto surface = surfaceFunc(ctxInfo.grContext(), 1, kOrigColor, &backendTex);
ericrkc4025182016-05-04 12:01:58 -0700892 if (surface) {
893 test_surface_draw_partially(reporter, surface, kOrigColor);
894 surface.reset();
Brian Salomon26102cb2018-03-09 09:33:19 -0500895 gpu->deleteTestingOnlyBackendTexture(backendTex);
ericrkc4025182016-05-04 12:01:58 -0700896 }
897 }
898}
899
900
901DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(SurfaceAttachStencil_Gpu, reporter, ctxInfo) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500902 GrGpu* gpu = ctxInfo.grContext()->contextPriv().getGpu();
ericrkc4025182016-05-04 12:01:58 -0700903 if (!gpu) {
904 return;
905 }
Eric Karl5c779752017-05-08 12:02:07 -0700906 if (gpu->caps()->avoidStencilBuffers()) {
907 return;
908 }
ericrkc4025182016-05-04 12:01:58 -0700909 static const uint32_t kOrigColor = 0xFFAABBCC;
910
Robert Phillips6be756b2018-01-16 15:07:54 -0500911 auto resourceProvider = ctxInfo.grContext()->contextPriv().resourceProvider();
912
ericrkc4025182016-05-04 12:01:58 -0700913 for (auto& surfaceFunc : {&create_gpu_surface_backend_texture,
914 &create_gpu_surface_backend_texture_as_render_target}) {
Brian Salomonbdecacf2018-02-02 20:32:49 -0500915 for (int sampleCnt : {1, 4, 8}) {
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500916 GrBackendTexture backendTex;
917 auto surface = surfaceFunc(ctxInfo.grContext(), sampleCnt, kOrigColor, &backendTex);
ericrkc4025182016-05-04 12:01:58 -0700918
Brian Salomonbdecacf2018-02-02 20:32:49 -0500919 if (!surface && sampleCnt > 1) {
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500920 // Certain platforms don't support MSAA, skip these.
921 continue;
ericrkc4025182016-05-04 12:01:58 -0700922 }
923
924 // Validate that we can attach a stencil buffer to an SkSurface created by either of
925 // our surface functions.
Brian Osman11052242016-10-27 14:47:55 -0400926 GrRenderTarget* rt = surface->getCanvas()
927 ->internal_private_accessTopLayerRenderTargetContext()->accessRenderTarget();
Robert Phillips6be756b2018-01-16 15:07:54 -0500928 REPORTER_ASSERT(reporter, resourceProvider->attachStencilAttachment(rt));
Brian Salomon26102cb2018-03-09 09:33:19 -0500929 gpu->deleteTestingOnlyBackendTexture(backendTex);
ericrkc4025182016-05-04 12:01:58 -0700930 }
bsalomone63ffef2016-02-05 07:17:34 -0800931 }
932}
933#endif
brianosman0e22eb82016-08-30 07:07:59 -0700934
935static void test_surface_creation_and_snapshot_with_color_space(
936 skiatest::Reporter* reporter,
937 const char* prefix,
938 bool f16Support,
Brian Osman10fc6fd2018-03-02 11:01:10 -0500939 bool supports1010102,
brianosman0e22eb82016-08-30 07:07:59 -0700940 std::function<sk_sp<SkSurface>(const SkImageInfo&)> surfaceMaker) {
941
Matt Sarett77a7a1b2017-02-07 13:56:11 -0500942 auto srgbColorSpace = SkColorSpace::MakeSRGB();
Brian Osman36703d92017-12-12 14:09:31 -0500943 const SkMatrix44* srgbMatrix = srgbColorSpace->toXYZD50();
raftias94888332016-10-18 10:02:51 -0700944 SkASSERT(srgbMatrix);
Matt Sarett99e3f7d2016-10-28 12:51:08 -0400945 SkColorSpaceTransferFn oddGamma;
946 oddGamma.fA = 1.0f;
947 oddGamma.fB = oddGamma.fC = oddGamma.fD = oddGamma.fE = oddGamma.fF = 0.0f;
948 oddGamma.fG = 4.0f;
Brian Osman526972e2016-10-24 09:24:02 -0400949 auto oddColorSpace = SkColorSpace::MakeRGB(oddGamma, *srgbMatrix);
Matt Sarett77a7a1b2017-02-07 13:56:11 -0500950 auto linearColorSpace = SkColorSpace::MakeSRGBLinear();
brianosman0e22eb82016-08-30 07:07:59 -0700951
952 const struct {
953 SkColorType fColorType;
954 sk_sp<SkColorSpace> fColorSpace;
955 bool fShouldWork;
956 const char* fDescription;
957 } testConfigs[] = {
958 { kN32_SkColorType, nullptr, true, "N32-nullptr" },
959 { kN32_SkColorType, linearColorSpace, false, "N32-linear" },
960 { kN32_SkColorType, srgbColorSpace, true, "N32-srgb" },
brianosman0e22eb82016-08-30 07:07:59 -0700961 { kN32_SkColorType, oddColorSpace, false, "N32-odd" },
Stan Iliev4ed9ae42017-07-25 11:59:12 -0400962 { kRGBA_F16_SkColorType, nullptr, true, "F16-nullptr" },
brianosman0e22eb82016-08-30 07:07:59 -0700963 { kRGBA_F16_SkColorType, linearColorSpace, true, "F16-linear" },
964 { kRGBA_F16_SkColorType, srgbColorSpace, false, "F16-srgb" },
brianosman0e22eb82016-08-30 07:07:59 -0700965 { kRGBA_F16_SkColorType, oddColorSpace, false, "F16-odd" },
966 { kRGB_565_SkColorType, srgbColorSpace, false, "565-srgb" },
967 { kAlpha_8_SkColorType, srgbColorSpace, false, "A8-srgb" },
Brian Osman10fc6fd2018-03-02 11:01:10 -0500968 { kRGBA_1010102_SkColorType, nullptr, true, "1010102-nullptr" },
brianosman0e22eb82016-08-30 07:07:59 -0700969 };
970
971 for (auto& testConfig : testConfigs) {
972 SkString fullTestName = SkStringPrintf("%s-%s", prefix, testConfig.fDescription);
973 SkImageInfo info = SkImageInfo::Make(10, 10, testConfig.fColorType, kPremul_SkAlphaType,
974 testConfig.fColorSpace);
975
976 // For some GPU contexts (eg ANGLE), we don't have f16 support, so we should fail to create
977 // any surface of that type:
978 bool shouldWork = testConfig.fShouldWork &&
Brian Osman10fc6fd2018-03-02 11:01:10 -0500979 (f16Support || kRGBA_F16_SkColorType != testConfig.fColorType) &&
980 (supports1010102 || kRGBA_1010102_SkColorType != testConfig.fColorType);
brianosman0e22eb82016-08-30 07:07:59 -0700981
982 auto surface(surfaceMaker(info));
Brian Salomon1c80e992018-01-29 09:50:47 -0500983 REPORTER_ASSERT(reporter, SkToBool(surface) == shouldWork, fullTestName.c_str());
brianosman0e22eb82016-08-30 07:07:59 -0700984
985 if (shouldWork && surface) {
986 sk_sp<SkImage> image(surface->makeImageSnapshot());
Brian Salomon1c80e992018-01-29 09:50:47 -0500987 REPORTER_ASSERT(reporter, image, testConfig.fDescription);
brianosman0e22eb82016-08-30 07:07:59 -0700988 SkColorSpace* imageColorSpace = as_IB(image)->onImageInfo().colorSpace();
Brian Salomon1c80e992018-01-29 09:50:47 -0500989 REPORTER_ASSERT(reporter, imageColorSpace == testConfig.fColorSpace.get(),
990 fullTestName.c_str());
brianosman0e22eb82016-08-30 07:07:59 -0700991 }
992 }
993}
994
995DEF_TEST(SurfaceCreationWithColorSpace, reporter) {
996 auto surfaceMaker = [](const SkImageInfo& info) {
997 return SkSurface::MakeRaster(info);
998 };
999
Brian Osman10fc6fd2018-03-02 11:01:10 -05001000 test_surface_creation_and_snapshot_with_color_space(reporter, "raster", true, true,
1001 surfaceMaker);
brianosman0e22eb82016-08-30 07:07:59 -07001002}
1003
1004#if SK_SUPPORT_GPU
1005DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceCreationWithColorSpace_Gpu, reporter, ctxInfo) {
1006 GrContext* context = ctxInfo.grContext();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001007
Brian Salomonbdecacf2018-02-02 20:32:49 -05001008 bool f16Support = context->caps()->isConfigRenderable(kRGBA_half_GrPixelConfig);
Brian Osman10fc6fd2018-03-02 11:01:10 -05001009 bool supports1010102 = context->caps()->isConfigRenderable(kRGBA_1010102_GrPixelConfig);
brianosman0e22eb82016-08-30 07:07:59 -07001010 auto surfaceMaker = [context](const SkImageInfo& info) {
1011 return SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, info);
1012 };
1013
Brian Osman10fc6fd2018-03-02 11:01:10 -05001014 test_surface_creation_and_snapshot_with_color_space(reporter, "gpu", f16Support,
1015 supports1010102, surfaceMaker);
brianosman0e22eb82016-08-30 07:07:59 -07001016
Robert Phillipsd21b2a52017-12-12 13:01:25 -05001017 std::vector<GrBackendTexture> backendTextures;
1018 auto wrappedSurfaceMaker = [ context, &backendTextures ](const SkImageInfo& info) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001019 GrGpu* gpu = context->contextPriv().getGpu();
1020
Greg Daniel7ef28f32017-04-20 16:41:55 +00001021 static const int kSize = 10;
1022 GrPixelConfig config = SkImageInfo2GrPixelConfig(info, *context->caps());
Greg Daniel0a7aa142018-02-21 13:02:32 -05001023 SkASSERT(kUnknown_GrPixelConfig != config);
brianosman0e22eb82016-08-30 07:07:59 -07001024
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001025 GrBackendTexture backendTex = gpu->createTestingOnlyBackendTexture(
Robert Phillipsd21b2a52017-12-12 13:01:25 -05001026 nullptr, kSize, kSize, config, true, GrMipMapped::kNo);
Greg Daniel7ef28f32017-04-20 16:41:55 +00001027
Greg Daniel5366e592018-01-10 09:57:53 -05001028 if (!backendTex.isValid() ||
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001029 !gpu->isTestingOnlyBackendTexture(backendTex)) {
brianosman0e22eb82016-08-30 07:07:59 -07001030 return sk_sp<SkSurface>(nullptr);
1031 }
Robert Phillipsd21b2a52017-12-12 13:01:25 -05001032 backendTextures.push_back(backendTex);
Greg Daniel7ef28f32017-04-20 16:41:55 +00001033
1034 return SkSurface::MakeFromBackendTexture(context, backendTex,
Robert Phillipse44ef102017-07-21 15:37:19 -04001035 kTopLeft_GrSurfaceOrigin, 0,
Greg Danielfaa095e2017-12-19 13:15:02 -05001036 info.colorType(),
Greg Daniel7ef28f32017-04-20 16:41:55 +00001037 sk_ref_sp(info.colorSpace()), nullptr);
brianosman0e22eb82016-08-30 07:07:59 -07001038 };
1039
1040 test_surface_creation_and_snapshot_with_color_space(reporter, "wrapped", f16Support,
Brian Osman10fc6fd2018-03-02 11:01:10 -05001041 supports1010102, wrappedSurfaceMaker);
brianosman0e22eb82016-08-30 07:07:59 -07001042
Robert Phillips6cdc22c2017-05-11 16:29:14 -04001043 context->flush();
1044
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001045 GrGpu* gpu = context->contextPriv().getGpu();
Robert Phillipsd21b2a52017-12-12 13:01:25 -05001046 for (auto backendTex : backendTextures) {
Brian Salomon26102cb2018-03-09 09:33:19 -05001047 gpu->deleteTestingOnlyBackendTexture(backendTex);
brianosman0e22eb82016-08-30 07:07:59 -07001048 }
1049}
1050#endif
Matt Sarett22886c42016-11-22 11:31:41 -05001051
1052static void test_overdraw_surface(skiatest::Reporter* r, SkSurface* surface) {
Matt Sarette11b6142016-11-28 18:28:07 -05001053 SkOverdrawCanvas canvas(surface->getCanvas());
1054 canvas.drawPaint(SkPaint());
Matt Sarett22886c42016-11-22 11:31:41 -05001055 sk_sp<SkImage> image = surface->makeImageSnapshot();
1056
1057 SkBitmap bitmap;
Cary Clark4f5a79c2018-02-07 15:51:00 -05001058 image->asLegacyBitmap(&bitmap);
Matt Sarett22886c42016-11-22 11:31:41 -05001059 for (int y = 0; y < 10; y++) {
1060 for (int x = 0; x < 10; x++) {
1061 REPORTER_ASSERT(r, 1 == SkGetPackedA32(*bitmap.getAddr32(x, y)));
1062 }
1063 }
1064}
1065
1066DEF_TEST(OverdrawSurface_Raster, r) {
1067 sk_sp<SkSurface> surface = create_surface();
1068 test_overdraw_surface(r, surface.get());
1069}
1070
1071#if SK_SUPPORT_GPU
1072DEF_GPUTEST_FOR_RENDERING_CONTEXTS(OverdrawSurface_Gpu, r, ctxInfo) {
1073 GrContext* context = ctxInfo.grContext();
1074 sk_sp<SkSurface> surface = create_gpu_surface(context);
1075 test_overdraw_surface(r, surface.get());
1076}
1077#endif
Mike Reed44d04bd2017-06-28 19:57:21 -04001078
1079DEF_TEST(Surface_null, r) {
1080 REPORTER_ASSERT(r, SkSurface::MakeNull(0, 0) == nullptr);
1081
1082 const int w = 37;
1083 const int h = 1000;
1084 auto surf = SkSurface::MakeNull(w, h);
1085 auto canvas = surf->getCanvas();
1086
1087 canvas->drawPaint(SkPaint()); // should not crash, but don't expect anything to draw
1088 REPORTER_ASSERT(r, surf->makeImageSnapshot() == nullptr);
1089}
Mike Reedd4746982018-02-07 16:05:29 -05001090
1091// assert: if a given imageinfo is valid for a surface, then it must be valid for an image
1092// (so the snapshot can succeed)
1093DEF_TEST(surface_image_unity, reporter) {
1094 auto do_test = [reporter](const SkImageInfo& info) {
1095 size_t rowBytes = info.minRowBytes();
1096 auto surf = SkSurface::MakeRaster(info, rowBytes, nullptr);
1097 if (surf) {
1098 auto img = surf->makeImageSnapshot();
1099 if (!img && false) { // change to true to document the differences
1100 SkDebugf("image failed: [%08X %08X] %14s %s\n",
1101 info.width(), info.height(),
1102 sk_tool_utils::colortype_name(info.colorType()),
1103 sk_tool_utils::alphatype_name(info.alphaType()));
1104 return;
1105 }
1106 REPORTER_ASSERT(reporter, img != nullptr);
1107
1108 char dummyPixel = 0; // just need a valid address (not a valid size)
1109 SkPixmap pmap = { info, &dummyPixel, rowBytes };
1110 img = SkImage::MakeFromRaster(pmap, nullptr, nullptr);
1111 REPORTER_ASSERT(reporter, img != nullptr);
1112 }
1113 };
1114
Mike Klein955b3d52018-02-20 11:55:48 -05001115 const int32_t sizes[] = { 0, 1, 1 << 15, 1 << 16, 1 << 18, 1 << 28, 1 << 29, 1 << 30, -1 };
Mike Klein30dc8f92018-02-16 10:08:10 -05001116 for (int cti = 0; cti <= kLastEnum_SkColorType; ++cti) {
Mike Reedd4746982018-02-07 16:05:29 -05001117 SkColorType ct = static_cast<SkColorType>(cti);
Mike Klein30dc8f92018-02-16 10:08:10 -05001118 for (int ati = 0; ati <= kLastEnum_SkAlphaType; ++ati) {
Mike Reedd4746982018-02-07 16:05:29 -05001119 SkAlphaType at = static_cast<SkAlphaType>(ati);
1120 for (int32_t size : sizes) {
Mike Klein955b3d52018-02-20 11:55:48 -05001121 // Large allocations tend to make the 32-bit bots run out of virtual address space.
1122 if (sizeof(size_t) == 4 && size > (1<<20)) {
1123 continue;
1124 }
Mike Reedd4746982018-02-07 16:05:29 -05001125 do_test(SkImageInfo::Make(1, size, ct, at));
1126 do_test(SkImageInfo::Make(size, 1, ct, at));
1127 }
1128 }
1129 }
1130}