blob: e74dcc915c6d56769363e9d86d7642166821f850 [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());
554 GrBackendObject textureHandle = image->getTextureHandle(false);
555 REPORTER_ASSERT(reporter, 0 != textureHandle);
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());
558 REPORTER_ASSERT(reporter, textureHandle == image->getTextureHandle(false));
junov@chromium.orgda904742013-05-01 22:38:16 +0000559 }
junov@chromium.orgda904742013-05-01 22:38:16 +0000560}
kkinnunen179a8f52015-11-20 13:32:24 -0800561#endif
bsalomoneaaaf0b2015-01-23 08:08:04 -0800562
kkinnunen179a8f52015-11-20 13:32:24 -0800563#if SK_SUPPORT_GPU
bsalomoneaaaf0b2015-01-23 08:08:04 -0800564
reede8f30622016-03-23 18:59:25 -0700565static SkBudgeted is_budgeted(const sk_sp<SkSurface>& surf) {
566 SkSurface_Gpu* gsurf = (SkSurface_Gpu*)surf.get();
Robert Phillips6de99042017-01-31 11:31:39 -0500567
568 GrRenderTargetProxy* proxy = gsurf->getDevice()->accessRenderTargetContext()
569 ->asRenderTargetProxy();
570 return proxy->isBudgeted();
bsalomoneaaaf0b2015-01-23 08:08:04 -0800571}
572
bsalomon5ec26ae2016-02-25 08:33:02 -0800573static SkBudgeted is_budgeted(SkImage* image) {
Robert Phillips0ae6faa2017-03-21 16:22:00 -0400574 return ((SkImage_Gpu*)image)->peekProxy()->isBudgeted();
bsalomoneaaaf0b2015-01-23 08:08:04 -0800575}
576
reed9ce9d672016-03-17 10:51:11 -0700577static SkBudgeted is_budgeted(const sk_sp<SkImage> image) {
578 return is_budgeted(image.get());
579}
580
egdanielab527a52016-06-28 08:07:26 -0700581DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceBudget, reporter, ctxInfo) {
bsalomoneaaaf0b2015-01-23 08:08:04 -0800582 SkImageInfo info = SkImageInfo::MakeN32Premul(8,8);
Robert Phillipsac6b1fa2017-03-20 08:38:50 -0400583 for (auto budgeted : { SkBudgeted::kNo, SkBudgeted::kYes }) {
584 auto surface(SkSurface::MakeRenderTarget(ctxInfo.grContext(), budgeted, info));
585 SkASSERT(surface);
586 REPORTER_ASSERT(reporter, budgeted == is_budgeted(surface));
bsalomoneaaaf0b2015-01-23 08:08:04 -0800587
Robert Phillipsac6b1fa2017-03-20 08:38:50 -0400588 sk_sp<SkImage> image(surface->makeImageSnapshot());
bsalomoneaaaf0b2015-01-23 08:08:04 -0800589
Robert Phillipsac6b1fa2017-03-20 08:38:50 -0400590 // Initially the image shares a texture with the surface, and the
591 // the budgets should always match.
592 REPORTER_ASSERT(reporter, budgeted == is_budgeted(surface));
593 REPORTER_ASSERT(reporter, budgeted == is_budgeted(image));
bsalomoneaaaf0b2015-01-23 08:08:04 -0800594
Robert Phillipsac6b1fa2017-03-20 08:38:50 -0400595 // Now trigger copy-on-write
596 surface->getCanvas()->clear(SK_ColorBLUE);
bsalomoneaaaf0b2015-01-23 08:08:04 -0800597
Robert Phillipsac6b1fa2017-03-20 08:38:50 -0400598 // They don't share a texture anymore but the budgets should still match.
599 REPORTER_ASSERT(reporter, budgeted == is_budgeted(surface));
600 REPORTER_ASSERT(reporter, budgeted == is_budgeted(image));
bsalomoneaaaf0b2015-01-23 08:08:04 -0800601 }
602}
junov@chromium.orgb516a412013-05-01 22:49:59 +0000603#endif
junov@chromium.orgda904742013-05-01 22:38:16 +0000604
kkinnunen179a8f52015-11-20 13:32:24 -0800605static void test_no_canvas1(skiatest::Reporter* reporter,
606 SkSurface* surface,
607 SkSurface::ContentChangeMode mode) {
608 // Test passes by not asserting
609 surface->notifyContentWillChange(mode);
610 SkDEBUGCODE(surface->validate();)
611}
612static void test_no_canvas2(skiatest::Reporter* reporter,
613 SkSurface* surface,
614 SkSurface::ContentChangeMode mode) {
junov@chromium.orgacea3ef2013-04-16 19:41:09 +0000615 // Verifies the robustness of SkSurface for handling use cases where calls
616 // are made before a canvas is created.
reed9ce9d672016-03-17 10:51:11 -0700617 sk_sp<SkImage> image1 = surface->makeImageSnapshot();
618 sk_sp<SkImage> aur_image1(image1);
kkinnunen179a8f52015-11-20 13:32:24 -0800619 SkDEBUGCODE(image1->validate();)
620 SkDEBUGCODE(surface->validate();)
621 surface->notifyContentWillChange(mode);
622 SkDEBUGCODE(image1->validate();)
623 SkDEBUGCODE(surface->validate();)
reed9ce9d672016-03-17 10:51:11 -0700624 sk_sp<SkImage> image2 = surface->makeImageSnapshot();
625 sk_sp<SkImage> aur_image2(image2);
kkinnunen179a8f52015-11-20 13:32:24 -0800626 SkDEBUGCODE(image2->validate();)
627 SkDEBUGCODE(surface->validate();)
628 REPORTER_ASSERT(reporter, image1 != image2);
junov@chromium.orgacea3ef2013-04-16 19:41:09 +0000629}
kkinnunen179a8f52015-11-20 13:32:24 -0800630DEF_TEST(SurfaceNoCanvas, reporter) {
631 SkSurface::ContentChangeMode modes[] =
632 { SkSurface::kDiscard_ContentChangeMode, SkSurface::kRetain_ContentChangeMode};
633 for (auto& test_func : { &test_no_canvas1, &test_no_canvas2 }) {
634 for (auto& mode : modes) {
reede8f30622016-03-23 18:59:25 -0700635 test_func(reporter, create_surface().get(), mode);
kkinnunen179a8f52015-11-20 13:32:24 -0800636 }
637 }
638}
junov@chromium.orgb516a412013-05-01 22:49:59 +0000639#if SK_SUPPORT_GPU
egdanielab527a52016-06-28 08:07:26 -0700640DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceNoCanvas_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800641 SkSurface::ContentChangeMode modes[] =
642 { SkSurface::kDiscard_ContentChangeMode, SkSurface::kRetain_ContentChangeMode};
643 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
644 for (auto& test_func : { &test_no_canvas1, &test_no_canvas2 }) {
645 for (auto& mode : modes) {
bsalomon8b7451a2016-05-11 06:33:06 -0700646 auto surface(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
reede8f30622016-03-23 18:59:25 -0700647 test_func(reporter, surface.get(), mode);
bsalomone904c092014-07-17 10:50:59 -0700648 }
robertphillips@google.com3bddb382013-11-12 13:51:03 +0000649 }
junov@chromium.orgaf058352013-04-03 15:03:26 +0000650 }
junov@chromium.org995beb62013-03-28 13:49:22 +0000651}
kkinnunen179a8f52015-11-20 13:32:24 -0800652#endif
reed9cd016e2016-01-30 10:01:06 -0800653
654static void check_rowbytes_remain_consistent(SkSurface* surface, skiatest::Reporter* reporter) {
reed6ceeebd2016-03-09 14:26:26 -0800655 SkPixmap surfacePM;
656 REPORTER_ASSERT(reporter, surface->peekPixels(&surfacePM));
reed9cd016e2016-01-30 10:01:06 -0800657
reed9ce9d672016-03-17 10:51:11 -0700658 sk_sp<SkImage> image(surface->makeImageSnapshot());
reed6ceeebd2016-03-09 14:26:26 -0800659 SkPixmap pm;
660 REPORTER_ASSERT(reporter, image->peekPixels(&pm));
reed9cd016e2016-01-30 10:01:06 -0800661
reed6ceeebd2016-03-09 14:26:26 -0800662 REPORTER_ASSERT(reporter, surfacePM.rowBytes() == pm.rowBytes());
reed9cd016e2016-01-30 10:01:06 -0800663
664 // trigger a copy-on-write
665 surface->getCanvas()->drawPaint(SkPaint());
reed9ce9d672016-03-17 10:51:11 -0700666 sk_sp<SkImage> image2(surface->makeImageSnapshot());
reed9cd016e2016-01-30 10:01:06 -0800667 REPORTER_ASSERT(reporter, image->uniqueID() != image2->uniqueID());
668
reed6ceeebd2016-03-09 14:26:26 -0800669 SkPixmap pm2;
670 REPORTER_ASSERT(reporter, image2->peekPixels(&pm2));
671 REPORTER_ASSERT(reporter, pm2.rowBytes() == pm.rowBytes());
reed9cd016e2016-01-30 10:01:06 -0800672}
673
674DEF_TEST(surface_rowbytes, reporter) {
675 const SkImageInfo info = SkImageInfo::MakeN32Premul(100, 100);
676
reede8f30622016-03-23 18:59:25 -0700677 auto surf0(SkSurface::MakeRaster(info));
678 check_rowbytes_remain_consistent(surf0.get(), reporter);
reed9cd016e2016-01-30 10:01:06 -0800679
680 // specify a larger rowbytes
reede8f30622016-03-23 18:59:25 -0700681 auto surf1(SkSurface::MakeRaster(info, 500, nullptr));
682 check_rowbytes_remain_consistent(surf1.get(), reporter);
reed9cd016e2016-01-30 10:01:06 -0800683
684 // Try some illegal rowByte values
reede8f30622016-03-23 18:59:25 -0700685 auto s = SkSurface::MakeRaster(info, 396, nullptr); // needs to be at least 400
reed9cd016e2016-01-30 10:01:06 -0800686 REPORTER_ASSERT(reporter, nullptr == s);
Mike Reedf0ffb892017-10-03 14:47:21 -0400687 s = SkSurface::MakeRaster(info, std::numeric_limits<size_t>::max(), nullptr);
reed9cd016e2016-01-30 10:01:06 -0800688 REPORTER_ASSERT(reporter, nullptr == s);
689}
bsalomone63ffef2016-02-05 07:17:34 -0800690
fmalita03912f12016-07-06 06:22:06 -0700691DEF_TEST(surface_raster_zeroinitialized, reporter) {
692 sk_sp<SkSurface> s(SkSurface::MakeRasterN32Premul(100, 100));
693 SkPixmap pixmap;
694 REPORTER_ASSERT(reporter, s->peekPixels(&pixmap));
695
696 for (int i = 0; i < pixmap.info().width(); ++i) {
697 for (int j = 0; j < pixmap.info().height(); ++j) {
698 REPORTER_ASSERT(reporter, *pixmap.addr32(i, j) == 0);
699 }
700 }
701}
702
bsalomone63ffef2016-02-05 07:17:34 -0800703#if SK_SUPPORT_GPU
ericrkc4025182016-05-04 12:01:58 -0700704static sk_sp<SkSurface> create_gpu_surface_backend_texture(
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500705 GrContext* context, int sampleCnt, uint32_t color, GrBackendTexture* outTexture) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500706 GrGpu* gpu = context->contextPriv().getGpu();
707
ericrkc4025182016-05-04 12:01:58 -0700708 const int kWidth = 10;
709 const int kHeight = 10;
Ben Wagner7ecc5962016-11-02 17:07:33 -0400710 std::unique_ptr<uint32_t[]> pixels(new uint32_t[kWidth * kHeight]);
ericrkc4025182016-05-04 12:01:58 -0700711 sk_memset32(pixels.get(), color, kWidth * kHeight);
Greg Daniel7ef28f32017-04-20 16:41:55 +0000712
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500713 *outTexture = gpu->createTestingOnlyBackendTexture(
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500714 pixels.get(), kWidth, kHeight, kRGBA_8888_GrPixelConfig, true, GrMipMapped::kNo);
Greg Daniel7ef28f32017-04-20 16:41:55 +0000715
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500716 if (!outTexture->isValid() || !gpu->isTestingOnlyBackendTexture(*outTexture)) {
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500717 return nullptr;
718 }
Greg Daniel7ef28f32017-04-20 16:41:55 +0000719
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500720 sk_sp<SkSurface> surface = SkSurface::MakeFromBackendTexture(context, *outTexture,
Robert Phillipse44ef102017-07-21 15:37:19 -0400721 kTopLeft_GrSurfaceOrigin, sampleCnt,
Greg Danielfaa095e2017-12-19 13:15:02 -0500722 kRGBA_8888_SkColorType,
Greg Daniel7ef28f32017-04-20 16:41:55 +0000723 nullptr, nullptr);
ericrkc4025182016-05-04 12:01:58 -0700724 if (!surface) {
Brian Salomon26102cb2018-03-09 09:33:19 -0500725 gpu->deleteTestingOnlyBackendTexture(*outTexture);
ericrkc4025182016-05-04 12:01:58 -0700726 return nullptr;
727 }
ericrkc4025182016-05-04 12:01:58 -0700728 return surface;
729}
bsalomone63ffef2016-02-05 07:17:34 -0800730
ericrkc4025182016-05-04 12:01:58 -0700731static sk_sp<SkSurface> create_gpu_surface_backend_texture_as_render_target(
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500732 GrContext* context, int sampleCnt, uint32_t color, GrBackendTexture* outTexture) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500733 GrGpu* gpu = context->contextPriv().getGpu();
734
ericrkc4025182016-05-04 12:01:58 -0700735 const int kWidth = 10;
736 const int kHeight = 10;
Ben Wagner7ecc5962016-11-02 17:07:33 -0400737 std::unique_ptr<uint32_t[]> pixels(new uint32_t[kWidth * kHeight]);
ericrkc4025182016-05-04 12:01:58 -0700738 sk_memset32(pixels.get(), color, kWidth * kHeight);
Greg Daniel7ef28f32017-04-20 16:41:55 +0000739
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500740 *outTexture = gpu->createTestingOnlyBackendTexture(
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500741 pixels.get(), kWidth, kHeight, kRGBA_8888_GrPixelConfig, true, GrMipMapped::kNo);
Greg Daniel7ef28f32017-04-20 16:41:55 +0000742
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500743 if (!outTexture->isValid() || !gpu->isTestingOnlyBackendTexture(*outTexture)) {
ericrkc4025182016-05-04 12:01:58 -0700744 return nullptr;
745 }
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500746
747 sk_sp<SkSurface> surface = SkSurface::MakeFromBackendTextureAsRenderTarget(
Greg Danielfaa095e2017-12-19 13:15:02 -0500748 context, *outTexture, kTopLeft_GrSurfaceOrigin, sampleCnt, kRGBA_8888_SkColorType,
749 nullptr, nullptr);
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500750
751 if (!surface) {
Brian Salomon26102cb2018-03-09 09:33:19 -0500752 gpu->deleteTestingOnlyBackendTexture(*outTexture);
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500753 return nullptr;
754 }
ericrkc4025182016-05-04 12:01:58 -0700755 return surface;
756}
757
758static void test_surface_clear(skiatest::Reporter* reporter, sk_sp<SkSurface> surface,
Robert Phillips2c862492017-01-18 10:08:39 -0500759 std::function<sk_sp<GrSurfaceContext>(SkSurface*)> grSurfaceGetter,
ericrkc4025182016-05-04 12:01:58 -0700760 uint32_t expectedValue) {
bsalomone63ffef2016-02-05 07:17:34 -0800761 if (!surface) {
762 ERRORF(reporter, "Could not create GPU SkSurface.");
763 return;
764 }
765 int w = surface->width();
766 int h = surface->height();
Ben Wagner7ecc5962016-11-02 17:07:33 -0400767 std::unique_ptr<uint32_t[]> pixels(new uint32_t[w * h]);
ericrkc4025182016-05-04 12:01:58 -0700768 sk_memset32(pixels.get(), ~expectedValue, w * h);
bsalomone63ffef2016-02-05 07:17:34 -0800769
Robert Phillips2c862492017-01-18 10:08:39 -0500770 sk_sp<GrSurfaceContext> grSurfaceContext(grSurfaceGetter(surface.get()));
771 if (!grSurfaceContext) {
bsalomone63ffef2016-02-05 07:17:34 -0800772 ERRORF(reporter, "Could access render target of GPU SkSurface.");
773 return;
774 }
bsalomon2fba8092016-02-05 13:47:06 -0800775 surface.reset();
Robert Phillips2c862492017-01-18 10:08:39 -0500776
777 SkImageInfo ii = SkImageInfo::Make(w, h, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
778 grSurfaceContext->readPixels(ii, pixels.get(), 0, 0, 0);
bsalomone63ffef2016-02-05 07:17:34 -0800779 for (int y = 0; y < h; ++y) {
780 for (int x = 0; x < w; ++x) {
781 uint32_t pixel = pixels.get()[y * w + x];
782 if (pixel != expectedValue) {
783 SkString msg;
784 if (expectedValue) {
785 msg = "SkSurface should have left render target unmodified";
786 } else {
787 msg = "SkSurface should have cleared the render target";
788 }
789 ERRORF(reporter,
790 "%s but read 0x%08x (instead of 0x%08x) at %x,%d", msg.c_str(), pixel,
791 expectedValue, x, y);
792 return;
793 }
794 }
795 }
796}
797
bsalomon758586c2016-04-06 14:02:39 -0700798DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(SurfaceClear_Gpu, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -0700799 GrContext* context = ctxInfo.grContext();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500800 GrGpu* gpu = context->contextPriv().getGpu();
ericrkc4025182016-05-04 12:01:58 -0700801
Robert Phillips2c862492017-01-18 10:08:39 -0500802 std::function<sk_sp<GrSurfaceContext>(SkSurface*)> grSurfaceContextGetters[] = {
egdanielab527a52016-06-28 08:07:26 -0700803 [] (SkSurface* s){
Robert Phillips2c862492017-01-18 10:08:39 -0500804 return sk_ref_sp(s->getCanvas()->internal_private_accessTopLayerRenderTargetContext());
805 },
806 [] (SkSurface* s){
807 sk_sp<SkImage> i(s->makeImageSnapshot());
808 SkImage_Gpu* gpuImage = (SkImage_Gpu *) as_IB(i);
Robert Phillips6de99042017-01-31 11:31:39 -0500809 sk_sp<GrTextureProxy> proxy = gpuImage->asTextureProxyRef();
Robert Phillips2c862492017-01-18 10:08:39 -0500810 GrContext* context = gpuImage->context();
811 return context->contextPriv().makeWrappedSurfaceContext(std::move(proxy),
812 gpuImage->refColorSpace());
813 }
bsalomone63ffef2016-02-05 07:17:34 -0800814 };
ericrkc4025182016-05-04 12:01:58 -0700815
Robert Phillips2c862492017-01-18 10:08:39 -0500816 for (auto grSurfaceGetter : grSurfaceContextGetters) {
ericrkc4025182016-05-04 12:01:58 -0700817 // Test that non-wrapped RTs are created clear.
bsalomone63ffef2016-02-05 07:17:34 -0800818 for (auto& surface_func : {&create_gpu_surface, &create_gpu_scratch_surface}) {
reede8f30622016-03-23 18:59:25 -0700819 auto surface = surface_func(context, kPremul_SkAlphaType, nullptr);
bsalomone63ffef2016-02-05 07:17:34 -0800820 test_surface_clear(reporter, surface, grSurfaceGetter, 0x0);
821 }
822 // Wrapped RTs are *not* supposed to clear (to allow client to partially update a surface).
ericrkc4025182016-05-04 12:01:58 -0700823 const uint32_t kOrigColor = 0xABABABAB;
824 for (auto& surfaceFunc : {&create_gpu_surface_backend_texture,
825 &create_gpu_surface_backend_texture_as_render_target}) {
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500826 GrBackendTexture backendTex;
Brian Salomonbdecacf2018-02-02 20:32:49 -0500827 auto surface = surfaceFunc(context, 1, kOrigColor, &backendTex);
ericrkc4025182016-05-04 12:01:58 -0700828 test_surface_clear(reporter, surface, grSurfaceGetter, kOrigColor);
829 surface.reset();
Brian Salomon26102cb2018-03-09 09:33:19 -0500830 gpu->deleteTestingOnlyBackendTexture(backendTex);
ericrkc4025182016-05-04 12:01:58 -0700831 }
832 }
833}
bsalomone63ffef2016-02-05 07:17:34 -0800834
ericrkc4025182016-05-04 12:01:58 -0700835static void test_surface_draw_partially(
836 skiatest::Reporter* reporter, sk_sp<SkSurface> surface, uint32_t origColor) {
837 const int kW = surface->width();
838 const int kH = surface->height();
839 SkPaint paint;
840 const SkColor kRectColor = ~origColor | 0xFF000000;
841 paint.setColor(kRectColor);
842 surface->getCanvas()->drawRect(SkRect::MakeWH(SkIntToScalar(kW), SkIntToScalar(kH)/2),
843 paint);
Ben Wagner7ecc5962016-11-02 17:07:33 -0400844 std::unique_ptr<uint32_t[]> pixels(new uint32_t[kW * kH]);
ericrkc4025182016-05-04 12:01:58 -0700845 sk_memset32(pixels.get(), ~origColor, kW * kH);
846 // Read back RGBA to avoid format conversions that may not be supported on all platforms.
847 SkImageInfo readInfo = SkImageInfo::Make(kW, kH, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
848 SkAssertResult(surface->readPixels(readInfo, pixels.get(), kW * sizeof(uint32_t), 0, 0));
849 bool stop = false;
850 SkPMColor origColorPM = SkPackARGB_as_RGBA((origColor >> 24 & 0xFF),
851 (origColor >> 0 & 0xFF),
852 (origColor >> 8 & 0xFF),
853 (origColor >> 16 & 0xFF));
854 SkPMColor rectColorPM = SkPackARGB_as_RGBA((kRectColor >> 24 & 0xFF),
855 (kRectColor >> 16 & 0xFF),
856 (kRectColor >> 8 & 0xFF),
857 (kRectColor >> 0 & 0xFF));
858 for (int y = 0; y < kH/2 && !stop; ++y) {
859 for (int x = 0; x < kW && !stop; ++x) {
860 REPORTER_ASSERT(reporter, rectColorPM == pixels[x + y * kW]);
861 if (rectColorPM != pixels[x + y * kW]) {
862 stop = true;
863 }
864 }
865 }
866 stop = false;
867 for (int y = kH/2; y < kH && !stop; ++y) {
868 for (int x = 0; x < kW && !stop; ++x) {
869 REPORTER_ASSERT(reporter, origColorPM == pixels[x + y * kW]);
870 if (origColorPM != pixels[x + y * kW]) {
871 stop = true;
872 }
873 }
874 }
875}
bsalomone63ffef2016-02-05 07:17:34 -0800876
egdanielab527a52016-06-28 08:07:26 -0700877DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfacePartialDraw_Gpu, reporter, ctxInfo) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500878 GrGpu* gpu = ctxInfo.grContext()->contextPriv().getGpu();
ericrkc4025182016-05-04 12:01:58 -0700879 if (!gpu) {
880 return;
881 }
882 static const uint32_t kOrigColor = 0xFFAABBCC;
bsalomone63ffef2016-02-05 07:17:34 -0800883
ericrkc4025182016-05-04 12:01:58 -0700884 for (auto& surfaceFunc : {&create_gpu_surface_backend_texture,
885 &create_gpu_surface_backend_texture_as_render_target}) {
886 // Validate that we can draw to the canvas and that the original texture color is
887 // preserved in pixels that aren't rendered to via the surface.
888 // This works only for non-multisampled case.
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500889 GrBackendTexture backendTex;
Brian Salomonbdecacf2018-02-02 20:32:49 -0500890 auto surface = surfaceFunc(ctxInfo.grContext(), 1, kOrigColor, &backendTex);
ericrkc4025182016-05-04 12:01:58 -0700891 if (surface) {
892 test_surface_draw_partially(reporter, surface, kOrigColor);
893 surface.reset();
Brian Salomon26102cb2018-03-09 09:33:19 -0500894 gpu->deleteTestingOnlyBackendTexture(backendTex);
ericrkc4025182016-05-04 12:01:58 -0700895 }
896 }
897}
898
899
900DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(SurfaceAttachStencil_Gpu, reporter, ctxInfo) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500901 GrGpu* gpu = ctxInfo.grContext()->contextPriv().getGpu();
ericrkc4025182016-05-04 12:01:58 -0700902 if (!gpu) {
903 return;
904 }
Eric Karl5c779752017-05-08 12:02:07 -0700905 if (gpu->caps()->avoidStencilBuffers()) {
906 return;
907 }
ericrkc4025182016-05-04 12:01:58 -0700908 static const uint32_t kOrigColor = 0xFFAABBCC;
909
Robert Phillips6be756b2018-01-16 15:07:54 -0500910 auto resourceProvider = ctxInfo.grContext()->contextPriv().resourceProvider();
911
ericrkc4025182016-05-04 12:01:58 -0700912 for (auto& surfaceFunc : {&create_gpu_surface_backend_texture,
913 &create_gpu_surface_backend_texture_as_render_target}) {
Brian Salomonbdecacf2018-02-02 20:32:49 -0500914 for (int sampleCnt : {1, 4, 8}) {
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500915 GrBackendTexture backendTex;
916 auto surface = surfaceFunc(ctxInfo.grContext(), sampleCnt, kOrigColor, &backendTex);
ericrkc4025182016-05-04 12:01:58 -0700917
Brian Salomonbdecacf2018-02-02 20:32:49 -0500918 if (!surface && sampleCnt > 1) {
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500919 // Certain platforms don't support MSAA, skip these.
920 continue;
ericrkc4025182016-05-04 12:01:58 -0700921 }
922
923 // Validate that we can attach a stencil buffer to an SkSurface created by either of
924 // our surface functions.
Brian Osman11052242016-10-27 14:47:55 -0400925 GrRenderTarget* rt = surface->getCanvas()
926 ->internal_private_accessTopLayerRenderTargetContext()->accessRenderTarget();
Robert Phillips6be756b2018-01-16 15:07:54 -0500927 REPORTER_ASSERT(reporter, resourceProvider->attachStencilAttachment(rt));
Brian Salomon26102cb2018-03-09 09:33:19 -0500928 gpu->deleteTestingOnlyBackendTexture(backendTex);
ericrkc4025182016-05-04 12:01:58 -0700929 }
bsalomone63ffef2016-02-05 07:17:34 -0800930 }
931}
932#endif
brianosman0e22eb82016-08-30 07:07:59 -0700933
934static void test_surface_creation_and_snapshot_with_color_space(
935 skiatest::Reporter* reporter,
936 const char* prefix,
937 bool f16Support,
Brian Osman10fc6fd2018-03-02 11:01:10 -0500938 bool supports1010102,
brianosman0e22eb82016-08-30 07:07:59 -0700939 std::function<sk_sp<SkSurface>(const SkImageInfo&)> surfaceMaker) {
940
Matt Sarett77a7a1b2017-02-07 13:56:11 -0500941 auto srgbColorSpace = SkColorSpace::MakeSRGB();
Brian Osman36703d92017-12-12 14:09:31 -0500942 const SkMatrix44* srgbMatrix = srgbColorSpace->toXYZD50();
raftias94888332016-10-18 10:02:51 -0700943 SkASSERT(srgbMatrix);
Matt Sarett99e3f7d2016-10-28 12:51:08 -0400944 SkColorSpaceTransferFn oddGamma;
945 oddGamma.fA = 1.0f;
946 oddGamma.fB = oddGamma.fC = oddGamma.fD = oddGamma.fE = oddGamma.fF = 0.0f;
947 oddGamma.fG = 4.0f;
Brian Osman526972e2016-10-24 09:24:02 -0400948 auto oddColorSpace = SkColorSpace::MakeRGB(oddGamma, *srgbMatrix);
Matt Sarett77a7a1b2017-02-07 13:56:11 -0500949 auto linearColorSpace = SkColorSpace::MakeSRGBLinear();
brianosman0e22eb82016-08-30 07:07:59 -0700950
951 const struct {
952 SkColorType fColorType;
953 sk_sp<SkColorSpace> fColorSpace;
954 bool fShouldWork;
955 const char* fDescription;
956 } testConfigs[] = {
957 { kN32_SkColorType, nullptr, true, "N32-nullptr" },
958 { kN32_SkColorType, linearColorSpace, false, "N32-linear" },
959 { kN32_SkColorType, srgbColorSpace, true, "N32-srgb" },
brianosman0e22eb82016-08-30 07:07:59 -0700960 { kN32_SkColorType, oddColorSpace, false, "N32-odd" },
Stan Iliev4ed9ae42017-07-25 11:59:12 -0400961 { kRGBA_F16_SkColorType, nullptr, true, "F16-nullptr" },
brianosman0e22eb82016-08-30 07:07:59 -0700962 { kRGBA_F16_SkColorType, linearColorSpace, true, "F16-linear" },
963 { kRGBA_F16_SkColorType, srgbColorSpace, false, "F16-srgb" },
brianosman0e22eb82016-08-30 07:07:59 -0700964 { kRGBA_F16_SkColorType, oddColorSpace, false, "F16-odd" },
965 { kRGB_565_SkColorType, srgbColorSpace, false, "565-srgb" },
966 { kAlpha_8_SkColorType, srgbColorSpace, false, "A8-srgb" },
Brian Osman10fc6fd2018-03-02 11:01:10 -0500967 { kRGBA_1010102_SkColorType, nullptr, true, "1010102-nullptr" },
brianosman0e22eb82016-08-30 07:07:59 -0700968 };
969
970 for (auto& testConfig : testConfigs) {
971 SkString fullTestName = SkStringPrintf("%s-%s", prefix, testConfig.fDescription);
972 SkImageInfo info = SkImageInfo::Make(10, 10, testConfig.fColorType, kPremul_SkAlphaType,
973 testConfig.fColorSpace);
974
975 // For some GPU contexts (eg ANGLE), we don't have f16 support, so we should fail to create
976 // any surface of that type:
977 bool shouldWork = testConfig.fShouldWork &&
Brian Osman10fc6fd2018-03-02 11:01:10 -0500978 (f16Support || kRGBA_F16_SkColorType != testConfig.fColorType) &&
979 (supports1010102 || kRGBA_1010102_SkColorType != testConfig.fColorType);
brianosman0e22eb82016-08-30 07:07:59 -0700980
981 auto surface(surfaceMaker(info));
Brian Salomon1c80e992018-01-29 09:50:47 -0500982 REPORTER_ASSERT(reporter, SkToBool(surface) == shouldWork, fullTestName.c_str());
brianosman0e22eb82016-08-30 07:07:59 -0700983
984 if (shouldWork && surface) {
985 sk_sp<SkImage> image(surface->makeImageSnapshot());
Brian Salomon1c80e992018-01-29 09:50:47 -0500986 REPORTER_ASSERT(reporter, image, testConfig.fDescription);
brianosman0e22eb82016-08-30 07:07:59 -0700987 SkColorSpace* imageColorSpace = as_IB(image)->onImageInfo().colorSpace();
Brian Salomon1c80e992018-01-29 09:50:47 -0500988 REPORTER_ASSERT(reporter, imageColorSpace == testConfig.fColorSpace.get(),
989 fullTestName.c_str());
brianosman0e22eb82016-08-30 07:07:59 -0700990 }
991 }
992}
993
994DEF_TEST(SurfaceCreationWithColorSpace, reporter) {
995 auto surfaceMaker = [](const SkImageInfo& info) {
996 return SkSurface::MakeRaster(info);
997 };
998
Brian Osman10fc6fd2018-03-02 11:01:10 -0500999 test_surface_creation_and_snapshot_with_color_space(reporter, "raster", true, true,
1000 surfaceMaker);
brianosman0e22eb82016-08-30 07:07:59 -07001001}
1002
1003#if SK_SUPPORT_GPU
1004DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceCreationWithColorSpace_Gpu, reporter, ctxInfo) {
1005 GrContext* context = ctxInfo.grContext();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001006
Brian Salomonbdecacf2018-02-02 20:32:49 -05001007 bool f16Support = context->caps()->isConfigRenderable(kRGBA_half_GrPixelConfig);
Brian Osman10fc6fd2018-03-02 11:01:10 -05001008 bool supports1010102 = context->caps()->isConfigRenderable(kRGBA_1010102_GrPixelConfig);
brianosman0e22eb82016-08-30 07:07:59 -07001009 auto surfaceMaker = [context](const SkImageInfo& info) {
1010 return SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, info);
1011 };
1012
Brian Osman10fc6fd2018-03-02 11:01:10 -05001013 test_surface_creation_and_snapshot_with_color_space(reporter, "gpu", f16Support,
1014 supports1010102, surfaceMaker);
brianosman0e22eb82016-08-30 07:07:59 -07001015
Robert Phillipsd21b2a52017-12-12 13:01:25 -05001016 std::vector<GrBackendTexture> backendTextures;
1017 auto wrappedSurfaceMaker = [ context, &backendTextures ](const SkImageInfo& info) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001018 GrGpu* gpu = context->contextPriv().getGpu();
1019
Greg Daniel7ef28f32017-04-20 16:41:55 +00001020 static const int kSize = 10;
1021 GrPixelConfig config = SkImageInfo2GrPixelConfig(info, *context->caps());
Greg Daniel0a7aa142018-02-21 13:02:32 -05001022 SkASSERT(kUnknown_GrPixelConfig != config);
brianosman0e22eb82016-08-30 07:07:59 -07001023
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001024 GrBackendTexture backendTex = gpu->createTestingOnlyBackendTexture(
Robert Phillipsd21b2a52017-12-12 13:01:25 -05001025 nullptr, kSize, kSize, config, true, GrMipMapped::kNo);
Greg Daniel7ef28f32017-04-20 16:41:55 +00001026
Greg Daniel5366e592018-01-10 09:57:53 -05001027 if (!backendTex.isValid() ||
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001028 !gpu->isTestingOnlyBackendTexture(backendTex)) {
brianosman0e22eb82016-08-30 07:07:59 -07001029 return sk_sp<SkSurface>(nullptr);
1030 }
Robert Phillipsd21b2a52017-12-12 13:01:25 -05001031 backendTextures.push_back(backendTex);
Greg Daniel7ef28f32017-04-20 16:41:55 +00001032
1033 return SkSurface::MakeFromBackendTexture(context, backendTex,
Robert Phillipse44ef102017-07-21 15:37:19 -04001034 kTopLeft_GrSurfaceOrigin, 0,
Greg Danielfaa095e2017-12-19 13:15:02 -05001035 info.colorType(),
Greg Daniel7ef28f32017-04-20 16:41:55 +00001036 sk_ref_sp(info.colorSpace()), nullptr);
brianosman0e22eb82016-08-30 07:07:59 -07001037 };
1038
1039 test_surface_creation_and_snapshot_with_color_space(reporter, "wrapped", f16Support,
Brian Osman10fc6fd2018-03-02 11:01:10 -05001040 supports1010102, wrappedSurfaceMaker);
brianosman0e22eb82016-08-30 07:07:59 -07001041
Robert Phillips6cdc22c2017-05-11 16:29:14 -04001042 context->flush();
1043
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001044 GrGpu* gpu = context->contextPriv().getGpu();
Robert Phillipsd21b2a52017-12-12 13:01:25 -05001045 for (auto backendTex : backendTextures) {
Brian Salomon26102cb2018-03-09 09:33:19 -05001046 gpu->deleteTestingOnlyBackendTexture(backendTex);
brianosman0e22eb82016-08-30 07:07:59 -07001047 }
1048}
1049#endif
Matt Sarett22886c42016-11-22 11:31:41 -05001050
1051static void test_overdraw_surface(skiatest::Reporter* r, SkSurface* surface) {
Matt Sarette11b6142016-11-28 18:28:07 -05001052 SkOverdrawCanvas canvas(surface->getCanvas());
1053 canvas.drawPaint(SkPaint());
Matt Sarett22886c42016-11-22 11:31:41 -05001054 sk_sp<SkImage> image = surface->makeImageSnapshot();
1055
1056 SkBitmap bitmap;
Cary Clark4f5a79c2018-02-07 15:51:00 -05001057 image->asLegacyBitmap(&bitmap);
Matt Sarett22886c42016-11-22 11:31:41 -05001058 for (int y = 0; y < 10; y++) {
1059 for (int x = 0; x < 10; x++) {
1060 REPORTER_ASSERT(r, 1 == SkGetPackedA32(*bitmap.getAddr32(x, y)));
1061 }
1062 }
1063}
1064
1065DEF_TEST(OverdrawSurface_Raster, r) {
1066 sk_sp<SkSurface> surface = create_surface();
1067 test_overdraw_surface(r, surface.get());
1068}
1069
1070#if SK_SUPPORT_GPU
1071DEF_GPUTEST_FOR_RENDERING_CONTEXTS(OverdrawSurface_Gpu, r, ctxInfo) {
1072 GrContext* context = ctxInfo.grContext();
1073 sk_sp<SkSurface> surface = create_gpu_surface(context);
1074 test_overdraw_surface(r, surface.get());
1075}
1076#endif
Mike Reed44d04bd2017-06-28 19:57:21 -04001077
1078DEF_TEST(Surface_null, r) {
1079 REPORTER_ASSERT(r, SkSurface::MakeNull(0, 0) == nullptr);
1080
1081 const int w = 37;
1082 const int h = 1000;
1083 auto surf = SkSurface::MakeNull(w, h);
1084 auto canvas = surf->getCanvas();
1085
1086 canvas->drawPaint(SkPaint()); // should not crash, but don't expect anything to draw
1087 REPORTER_ASSERT(r, surf->makeImageSnapshot() == nullptr);
1088}
Mike Reedd4746982018-02-07 16:05:29 -05001089
1090// assert: if a given imageinfo is valid for a surface, then it must be valid for an image
1091// (so the snapshot can succeed)
1092DEF_TEST(surface_image_unity, reporter) {
1093 auto do_test = [reporter](const SkImageInfo& info) {
1094 size_t rowBytes = info.minRowBytes();
1095 auto surf = SkSurface::MakeRaster(info, rowBytes, nullptr);
1096 if (surf) {
1097 auto img = surf->makeImageSnapshot();
1098 if (!img && false) { // change to true to document the differences
1099 SkDebugf("image failed: [%08X %08X] %14s %s\n",
1100 info.width(), info.height(),
1101 sk_tool_utils::colortype_name(info.colorType()),
1102 sk_tool_utils::alphatype_name(info.alphaType()));
1103 return;
1104 }
1105 REPORTER_ASSERT(reporter, img != nullptr);
1106
1107 char dummyPixel = 0; // just need a valid address (not a valid size)
1108 SkPixmap pmap = { info, &dummyPixel, rowBytes };
1109 img = SkImage::MakeFromRaster(pmap, nullptr, nullptr);
1110 REPORTER_ASSERT(reporter, img != nullptr);
1111 }
1112 };
1113
Mike Klein955b3d52018-02-20 11:55:48 -05001114 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 -05001115 for (int cti = 0; cti <= kLastEnum_SkColorType; ++cti) {
Mike Reedd4746982018-02-07 16:05:29 -05001116 SkColorType ct = static_cast<SkColorType>(cti);
Mike Klein30dc8f92018-02-16 10:08:10 -05001117 for (int ati = 0; ati <= kLastEnum_SkAlphaType; ++ati) {
Mike Reedd4746982018-02-07 16:05:29 -05001118 SkAlphaType at = static_cast<SkAlphaType>(ati);
1119 for (int32_t size : sizes) {
Mike Klein955b3d52018-02-20 11:55:48 -05001120 // Large allocations tend to make the 32-bit bots run out of virtual address space.
1121 if (sizeof(size_t) == 4 && size > (1<<20)) {
1122 continue;
1123 }
Mike Reedd4746982018-02-07 16:05:29 -05001124 do_test(SkImageInfo::Make(1, size, ct, at));
1125 do_test(SkImageInfo::Make(size, 1, ct, at));
1126 }
1127 }
1128 }
1129}