blob: 32fe6395557873d6fdd6660302e6081e11776d40 [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>
Brian Osmanc7ad40f2018-05-31 14:27:17 -04009#include <initializer_list>
Brian Salomonbdecacf2018-02-02 20:32:49 -050010#include <vector>
Herb Derbyd3895d82018-09-04 13:27:00 -040011#include "GrBackendSurface.h"
kkinnunen179a8f52015-11-20 13:32:24 -080012#include "GrContext.h"
Robert Phillips2c862492017-01-18 10:08:39 -050013#include "GrContextPriv.h"
Brian Salomon3a2cc2c2018-02-03 00:25:12 +000014#include "GrGpu.h"
Brian Salomonbdecacf2018-02-02 20:32:49 -050015#include "GrGpuResourcePriv.h"
16#include "GrRenderTargetContext.h"
ericrkc4025182016-05-04 12:01:58 -070017#include "GrResourceProvider.h"
Brian Osmanc7ad40f2018-05-31 14:27:17 -040018#include "SkCanvas.h"
19#include "SkData.h"
20#include "SkDevice.h"
Brian Salomonbdecacf2018-02-02 20:32:49 -050021#include "SkGpuDevice.h"
Brian Osmanc7ad40f2018-05-31 14:27:17 -040022#include "SkImage_Base.h"
Brian Salomonbdecacf2018-02-02 20:32:49 -050023#include "SkImage_Gpu.h"
Brian Osmanc7ad40f2018-05-31 14:27:17 -040024#include "SkOverdrawCanvas.h"
25#include "SkPath.h"
26#include "SkRegion.h"
27#include "SkRRect.h"
28#include "SkSurface.h"
Brian Salomonbdecacf2018-02-02 20:32:49 -050029#include "SkSurface_Gpu.h"
Brian Osmanc7ad40f2018-05-31 14:27:17 -040030#include "SkUtils.h"
31#include "Test.h"
junov@chromium.org995beb62013-03-28 13:49:22 +000032
Mike Reedd4746982018-02-07 16:05:29 -050033#include "sk_tool_utils.h"
34
bsalomon74f681d2015-06-23 14:38:48 -070035
kkinnunen179a8f52015-11-20 13:32:24 -080036static void release_direct_surface_storage(void* pixels, void* context) {
reed982542d2014-06-27 06:48:14 -070037 SkASSERT(pixels == context);
38 sk_free(pixels);
39}
reede8f30622016-03-23 18:59:25 -070040static sk_sp<SkSurface> create_surface(SkAlphaType at = kPremul_SkAlphaType,
41 SkImageInfo* requestedInfo = nullptr) {
bsalomon74f681d2015-06-23 14:38:48 -070042 const SkImageInfo info = SkImageInfo::MakeN32(10, 10, at);
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +000043 if (requestedInfo) {
44 *requestedInfo = info;
45 }
reede8f30622016-03-23 18:59:25 -070046 return SkSurface::MakeRaster(info);
junov@chromium.org995beb62013-03-28 13:49:22 +000047}
reede8f30622016-03-23 18:59:25 -070048static sk_sp<SkSurface> create_direct_surface(SkAlphaType at = kPremul_SkAlphaType,
49 SkImageInfo* requestedInfo = nullptr) {
kkinnunen179a8f52015-11-20 13:32:24 -080050 const SkImageInfo info = SkImageInfo::MakeN32(10, 10, at);
51 if (requestedInfo) {
52 *requestedInfo = info;
53 }
54 const size_t rowBytes = info.minRowBytes();
Mike Reedf0ffb892017-10-03 14:47:21 -040055 void* storage = sk_malloc_throw(info.computeByteSize(rowBytes));
reede8f30622016-03-23 18:59:25 -070056 return SkSurface::MakeRasterDirectReleaseProc(info, storage, rowBytes,
57 release_direct_surface_storage,
58 storage);
kkinnunen179a8f52015-11-20 13:32:24 -080059}
reede8f30622016-03-23 18:59:25 -070060static sk_sp<SkSurface> create_gpu_surface(GrContext* context, SkAlphaType at = kPremul_SkAlphaType,
61 SkImageInfo* requestedInfo = nullptr) {
kkinnunen179a8f52015-11-20 13:32:24 -080062 const SkImageInfo info = SkImageInfo::MakeN32(10, 10, at);
63 if (requestedInfo) {
64 *requestedInfo = info;
65 }
robertphillips7e922762016-07-26 11:38:17 -070066 return SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, info);
kkinnunen179a8f52015-11-20 13:32:24 -080067}
reede8f30622016-03-23 18:59:25 -070068static sk_sp<SkSurface> create_gpu_scratch_surface(GrContext* context,
69 SkAlphaType at = kPremul_SkAlphaType,
70 SkImageInfo* requestedInfo = nullptr) {
kkinnunen179a8f52015-11-20 13:32:24 -080071 const SkImageInfo info = SkImageInfo::MakeN32(10, 10, at);
72 if (requestedInfo) {
73 *requestedInfo = info;
74 }
robertphillips7e922762016-07-26 11:38:17 -070075 return SkSurface::MakeRenderTarget(context, SkBudgeted::kYes, info);
kkinnunen179a8f52015-11-20 13:32:24 -080076}
junov@chromium.org995beb62013-03-28 13:49:22 +000077
kkinnunen179a8f52015-11-20 13:32:24 -080078DEF_TEST(SurfaceEmpty, reporter) {
reedb2497c22014-12-31 12:31:43 -080079 const SkImageInfo info = SkImageInfo::Make(0, 0, kN32_SkColorType, kPremul_SkAlphaType);
reede8f30622016-03-23 18:59:25 -070080 REPORTER_ASSERT(reporter, nullptr == SkSurface::MakeRaster(info));
81 REPORTER_ASSERT(reporter, nullptr == SkSurface::MakeRasterDirect(info, nullptr, 0));
kkinnunen179a8f52015-11-20 13:32:24 -080082
reedb2497c22014-12-31 12:31:43 -080083}
egdanielab527a52016-06-28 08:07:26 -070084DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceEmpty_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -080085 const SkImageInfo info = SkImageInfo::Make(0, 0, kN32_SkColorType, kPremul_SkAlphaType);
86 REPORTER_ASSERT(reporter, nullptr ==
robertphillips7e922762016-07-26 11:38:17 -070087 SkSurface::MakeRenderTarget(ctxInfo.grContext(), SkBudgeted::kNo, info));
kkinnunen179a8f52015-11-20 13:32:24 -080088}
reedb2497c22014-12-31 12:31:43 -080089
Brian Salomonbdecacf2018-02-02 20:32:49 -050090DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrContext_colorTypeSupportedAsSurface, reporter, ctxInfo) {
91 for (int ct = 0; ct < kLastEnum_SkColorType; ++ct) {
92 static constexpr int kSize = 10;
93
94 SkColorType colorType = static_cast<SkColorType>(ct);
95 auto info = SkImageInfo::Make(kSize, kSize, colorType, kOpaque_SkAlphaType, nullptr);
96 bool can = ctxInfo.grContext()->colorTypeSupportedAsSurface(colorType);
97 auto surf = SkSurface::MakeRenderTarget(ctxInfo.grContext(), SkBudgeted::kYes, info, 1,
98 nullptr);
99 REPORTER_ASSERT(reporter, can == SkToBool(surf), "ct: %d, can: %d, surf: %d",
100 colorType, can, SkToBool(surf));
101
102 auto* gpu = ctxInfo.grContext()->contextPriv().getGpu();
103 GrBackendTexture backendTex = gpu->createTestingOnlyBackendTexture(
Brian Osman2b23c4b2018-06-01 12:25:08 -0400104 nullptr, kSize, kSize, colorType, true, GrMipMapped::kNo);
Brian Salomonbdecacf2018-02-02 20:32:49 -0500105 surf = SkSurface::MakeFromBackendTexture(ctxInfo.grContext(), backendTex,
106 kTopLeft_GrSurfaceOrigin, 0, colorType, nullptr,
107 nullptr);
108 REPORTER_ASSERT(reporter, can == SkToBool(surf), "ct: %d, can: %d, surf: %d",
109 colorType, can, SkToBool(surf));
110
111 surf = SkSurface::MakeFromBackendTextureAsRenderTarget(ctxInfo.grContext(), backendTex,
112 kTopLeft_GrSurfaceOrigin, 1,
113 colorType, nullptr, nullptr);
114 REPORTER_ASSERT(reporter, can == SkToBool(surf), "ct: %d, can: %d, surf: %d",
115 colorType, can, SkToBool(surf));
116
117 surf.reset();
118 ctxInfo.grContext()->flush();
119 if (backendTex.isValid()) {
Brian Salomon26102cb2018-03-09 09:33:19 -0500120 gpu->deleteTestingOnlyBackendTexture(backendTex);
Brian Salomonbdecacf2018-02-02 20:32:49 -0500121 }
122
123 static constexpr int kSampleCnt = 2;
124
125 can = ctxInfo.grContext()->maxSurfaceSampleCountForColorType(colorType) >= kSampleCnt;
126 surf = SkSurface::MakeRenderTarget(ctxInfo.grContext(), SkBudgeted::kYes, info, kSampleCnt,
127 nullptr);
128 REPORTER_ASSERT(reporter, can == SkToBool(surf), "ct: %d, can: %d, surf: %d",
129 colorType, can, SkToBool(surf));
130
Brian Osman2b23c4b2018-06-01 12:25:08 -0400131 backendTex = gpu->createTestingOnlyBackendTexture(nullptr, kSize, kSize, colorType, true,
132 GrMipMapped::kNo);
Brian Salomonbdecacf2018-02-02 20:32:49 -0500133 surf = SkSurface::MakeFromBackendTexture(ctxInfo.grContext(), backendTex,
134 kTopLeft_GrSurfaceOrigin, kSampleCnt, colorType,
135 nullptr, nullptr);
136 REPORTER_ASSERT(reporter, can == SkToBool(surf),
137 "colorTypeSupportedAsSurface:%d, surf:%d, ct:%d", can, SkToBool(surf),
138 colorType);
139 // Ensure that the sample count stored on the resulting SkSurface is a valid value.
140 if (surf) {
141 auto* rtc = ((SkSurface_Gpu*)(surf.get()))->getDevice()->accessRenderTargetContext();
142 int storedCnt = rtc->numStencilSamples();
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400143 int allowedCnt = ctxInfo.grContext()->contextPriv().caps()->getSampleCount(
Brian Salomonbdecacf2018-02-02 20:32:49 -0500144 storedCnt, rtc->asSurfaceProxy()->config());
145 REPORTER_ASSERT(reporter, storedCnt == allowedCnt,
146 "Should store an allowed sample count (%d vs %d)", allowedCnt,
147 storedCnt);
148 }
149
150 surf = SkSurface::MakeFromBackendTextureAsRenderTarget(ctxInfo.grContext(), backendTex,
151 kTopLeft_GrSurfaceOrigin, kSampleCnt,
152 colorType, nullptr, nullptr);
153 REPORTER_ASSERT(reporter, can == SkToBool(surf),
154 "colorTypeSupportedAsSurface:%d, surf:%d, ct:%d", can, SkToBool(surf),
155 colorType);
156 if (surf) {
157 auto* rtc = ((SkSurface_Gpu*)(surf.get()))->getDevice()->accessRenderTargetContext();
158 int storedCnt = rtc->numStencilSamples();
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400159 int allowedCnt = ctxInfo.grContext()->contextPriv().caps()->getSampleCount(
Brian Salomonbdecacf2018-02-02 20:32:49 -0500160 storedCnt, rtc->asSurfaceProxy()->config());
161 REPORTER_ASSERT(reporter, storedCnt == allowedCnt,
162 "Should store an allowed sample count (%d vs %d)", allowedCnt,
163 storedCnt);
164 }
165
166 surf.reset();
167 ctxInfo.grContext()->flush();
168 if (backendTex.isValid()) {
Brian Salomon26102cb2018-03-09 09:33:19 -0500169 gpu->deleteTestingOnlyBackendTexture(backendTex);
Brian Salomonbdecacf2018-02-02 20:32:49 -0500170 }
Brian Salomon93348dd2018-08-29 12:56:23 -0400171
172 GrBackendRenderTarget backendRenderTarget = gpu->createTestingOnlyBackendRenderTarget(
173 16, 16, SkColorTypeToGrColorType(colorType));
174 can = ctxInfo.grContext()->colorTypeSupportedAsSurface(colorType);
175 surf = SkSurface::MakeFromBackendRenderTarget(ctxInfo.grContext(), backendRenderTarget,
176 kTopLeft_GrSurfaceOrigin, colorType, nullptr,
177 nullptr);
178 REPORTER_ASSERT(reporter, can == SkToBool(surf), "ct: %d, can: %d, surf: %d", colorType,
179 can, SkToBool(surf));
180 surf.reset();
181 ctxInfo.grContext()->flush();
182 if (backendRenderTarget.isValid()) {
183 gpu->deleteTestingOnlyBackendRenderTarget(backendRenderTarget);
184 }
Brian Salomonbdecacf2018-02-02 20:32:49 -0500185 }
186}
187
188DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrContext_maxSurfaceSamplesForColorType, reporter, ctxInfo) {
189 for (int ct = 0; ct < kLastEnum_SkColorType; ++ct) {
190 static constexpr int kSize = 10;
191
192 SkColorType colorType = static_cast<SkColorType>(ct);
193 int max = ctxInfo.grContext()->maxSurfaceSampleCountForColorType(colorType);
194 if (!max) {
195 continue;
196 }
197 auto* gpu = ctxInfo.grContext()->contextPriv().getGpu();
198 GrBackendTexture backendTex = gpu->createTestingOnlyBackendTexture(
Brian Osman2b23c4b2018-06-01 12:25:08 -0400199 nullptr, kSize, kSize, colorType, true, GrMipMapped::kNo);
Brian Salomon99501b72018-03-23 11:26:11 -0400200 if (!backendTex.isValid()) {
201 continue;
202 }
203 SkScopeExit freeTex([&backendTex, gpu] {gpu->deleteTestingOnlyBackendTexture(backendTex);});
Brian Salomonbdecacf2018-02-02 20:32:49 -0500204 auto info = SkImageInfo::Make(kSize, kSize, colorType, kOpaque_SkAlphaType, nullptr);
205 auto surf = SkSurface::MakeFromBackendTexture(ctxInfo.grContext(), backendTex,
206 kTopLeft_GrSurfaceOrigin, max,
207 colorType, nullptr, nullptr);
208 REPORTER_ASSERT(reporter, surf);
209 if (!surf) {
210 continue;
211 }
212 int sampleCnt = ((SkSurface_Gpu*)(surf.get()))
213 ->getDevice()
214 ->accessRenderTargetContext()
215 ->numStencilSamples();
216 REPORTER_ASSERT(reporter, sampleCnt == max, "Exected: %d, actual: %d", max, sampleCnt);
217 }
218}
Brian Salomonbdecacf2018-02-02 20:32:49 -0500219
kkinnunen179a8f52015-11-20 13:32:24 -0800220static void test_canvas_peek(skiatest::Reporter* reporter,
reede8f30622016-03-23 18:59:25 -0700221 sk_sp<SkSurface>& surface,
kkinnunen179a8f52015-11-20 13:32:24 -0800222 const SkImageInfo& requestInfo,
223 bool expectPeekSuccess) {
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000224 const SkColor color = SK_ColorRED;
225 const SkPMColor pmcolor = SkPreMultiplyColor(color);
kkinnunen179a8f52015-11-20 13:32:24 -0800226 surface->getCanvas()->clear(color);
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000227
reed6ceeebd2016-03-09 14:26:26 -0800228 SkPixmap pmap;
229 bool success = surface->getCanvas()->peekPixels(&pmap);
kkinnunen179a8f52015-11-20 13:32:24 -0800230 REPORTER_ASSERT(reporter, expectPeekSuccess == success);
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000231
reed6ceeebd2016-03-09 14:26:26 -0800232 SkPixmap pmap2;
233 const void* addr2 = surface->peekPixels(&pmap2) ? pmap2.addr() : nullptr;
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000234
kkinnunen179a8f52015-11-20 13:32:24 -0800235 if (success) {
reed6ceeebd2016-03-09 14:26:26 -0800236 REPORTER_ASSERT(reporter, requestInfo == pmap.info());
237 REPORTER_ASSERT(reporter, requestInfo.minRowBytes() <= pmap.rowBytes());
238 REPORTER_ASSERT(reporter, pmcolor == *pmap.addr32());
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000239
reed6ceeebd2016-03-09 14:26:26 -0800240 REPORTER_ASSERT(reporter, pmap.addr() == pmap2.addr());
241 REPORTER_ASSERT(reporter, pmap.info() == pmap2.info());
242 REPORTER_ASSERT(reporter, pmap.rowBytes() == pmap2.rowBytes());
kkinnunen179a8f52015-11-20 13:32:24 -0800243 } else {
244 REPORTER_ASSERT(reporter, nullptr == addr2);
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000245 }
246}
kkinnunen179a8f52015-11-20 13:32:24 -0800247DEF_TEST(SurfaceCanvasPeek, reporter) {
248 for (auto& surface_func : { &create_surface, &create_direct_surface }) {
249 SkImageInfo requestInfo;
reede8f30622016-03-23 18:59:25 -0700250 auto surface(surface_func(kPremul_SkAlphaType, &requestInfo));
kkinnunen179a8f52015-11-20 13:32:24 -0800251 test_canvas_peek(reporter, surface, requestInfo, true);
252 }
253}
egdanielab527a52016-06-28 08:07:26 -0700254DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceCanvasPeek_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800255 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
256 SkImageInfo requestInfo;
bsalomon8b7451a2016-05-11 06:33:06 -0700257 auto surface(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, &requestInfo));
kkinnunen179a8f52015-11-20 13:32:24 -0800258 test_canvas_peek(reporter, surface, requestInfo, false);
259 }
260}
commit-bot@chromium.orgc3bd8af2014-02-13 17:14:46 +0000261
reede8f30622016-03-23 18:59:25 -0700262static void test_snapshot_alphatype(skiatest::Reporter* reporter, const sk_sp<SkSurface>& surface,
brianosman69c166d2016-08-17 14:01:05 -0700263 SkAlphaType expectedAlphaType) {
kkinnunen179a8f52015-11-20 13:32:24 -0800264 REPORTER_ASSERT(reporter, surface);
265 if (surface) {
reed9ce9d672016-03-17 10:51:11 -0700266 sk_sp<SkImage> image(surface->makeImageSnapshot());
kkinnunen179a8f52015-11-20 13:32:24 -0800267 REPORTER_ASSERT(reporter, image);
268 if (image) {
brianosman69c166d2016-08-17 14:01:05 -0700269 REPORTER_ASSERT(reporter, image->alphaType() == expectedAlphaType);
reed41e010c2015-06-09 12:16:53 -0700270 }
271 }
272}
kkinnunen179a8f52015-11-20 13:32:24 -0800273DEF_TEST(SurfaceSnapshotAlphaType, reporter) {
274 for (auto& surface_func : { &create_surface, &create_direct_surface }) {
brianosman69c166d2016-08-17 14:01:05 -0700275 for (auto& at: { kOpaque_SkAlphaType, kPremul_SkAlphaType, kUnpremul_SkAlphaType }) {
276 auto surface(surface_func(at, nullptr));
277 test_snapshot_alphatype(reporter, surface, at);
bsalomon74f681d2015-06-23 14:38:48 -0700278 }
279 }
280}
egdanielab527a52016-06-28 08:07:26 -0700281DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceSnapshotAlphaType_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800282 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
brianosman69c166d2016-08-17 14:01:05 -0700283 // GPU doesn't support creating unpremul surfaces, so only test opaque + premul
284 for (auto& at : { kOpaque_SkAlphaType, kPremul_SkAlphaType }) {
285 auto surface(surface_func(ctxInfo.grContext(), at, nullptr));
286 test_snapshot_alphatype(reporter, surface, at);
kkinnunen179a8f52015-11-20 13:32:24 -0800287 }
288 }
289}
bsalomon74f681d2015-06-23 14:38:48 -0700290
Robert Phillips8caf85f2018-04-05 09:30:38 -0400291static void test_backend_texture_access_copy_on_write(
292 skiatest::Reporter* reporter, SkSurface* surface, SkSurface::BackendHandleAccess access) {
293 GrBackendTexture tex1 = surface->getBackendTexture(access);
reed9ce9d672016-03-17 10:51:11 -0700294 sk_sp<SkImage> snap1(surface->makeImageSnapshot());
fmalitae2639082015-08-06 07:04:51 -0700295
Robert Phillips8caf85f2018-04-05 09:30:38 -0400296 GrBackendTexture tex2 = surface->getBackendTexture(access);
reed9ce9d672016-03-17 10:51:11 -0700297 sk_sp<SkImage> snap2(surface->makeImageSnapshot());
fmalitae2639082015-08-06 07:04:51 -0700298
299 // If the access mode triggers CoW, then the backend objects should reflect it.
Robert Phillips8caf85f2018-04-05 09:30:38 -0400300 REPORTER_ASSERT(reporter, GrBackendTexture::TestingOnly_Equals(tex1, tex2) == (snap1 == snap2));
fmalitae2639082015-08-06 07:04:51 -0700301}
Robert Phillips8caf85f2018-04-05 09:30:38 -0400302
303static void test_backend_rendertarget_access_copy_on_write(
304 skiatest::Reporter* reporter, SkSurface* surface, SkSurface::BackendHandleAccess access) {
305 GrBackendRenderTarget rt1 = surface->getBackendRenderTarget(access);
306 sk_sp<SkImage> snap1(surface->makeImageSnapshot());
307
308 GrBackendRenderTarget rt2 = surface->getBackendRenderTarget(access);
309 sk_sp<SkImage> snap2(surface->makeImageSnapshot());
310
311 // If the access mode triggers CoW, then the backend objects should reflect it.
312 REPORTER_ASSERT(reporter, GrBackendRenderTarget::TestingOnly_Equals(rt1, rt2) ==
313 (snap1 == snap2));
314}
315
316DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceBackendSurfaceAccessCopyOnWrite_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800317 const SkSurface::BackendHandleAccess accessModes[] = {
318 SkSurface::kFlushRead_BackendHandleAccess,
319 SkSurface::kFlushWrite_BackendHandleAccess,
320 SkSurface::kDiscardWrite_BackendHandleAccess,
321 };
Robert Phillips8caf85f2018-04-05 09:30:38 -0400322
kkinnunen179a8f52015-11-20 13:32:24 -0800323 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
Robert Phillips8caf85f2018-04-05 09:30:38 -0400324 for (auto& accessMode : accessModes) {
325 {
bsalomon8b7451a2016-05-11 06:33:06 -0700326 auto surface(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
Robert Phillips8caf85f2018-04-05 09:30:38 -0400327 test_backend_texture_access_copy_on_write(reporter, surface.get(), accessMode);
328 }
329 {
330 auto surface(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
331 test_backend_rendertarget_access_copy_on_write(reporter, surface.get(), accessMode);
kkinnunen179a8f52015-11-20 13:32:24 -0800332 }
333 }
334 }
335}
kkinnunen179a8f52015-11-20 13:32:24 -0800336
Robert Phillips8caf85f2018-04-05 09:30:38 -0400337template<typename Type, Type(SkSurface::*func)(SkSurface::BackendHandleAccess)>
338static void test_backend_unique_id(skiatest::Reporter* reporter, SkSurface* surface) {
reed9ce9d672016-03-17 10:51:11 -0700339 sk_sp<SkImage> image0(surface->makeImageSnapshot());
Robert Phillips8caf85f2018-04-05 09:30:38 -0400340
341 Type obj = (surface->*func)(SkSurface::kFlushRead_BackendHandleAccess);
342 REPORTER_ASSERT(reporter, obj.isValid());
reed9ce9d672016-03-17 10:51:11 -0700343 sk_sp<SkImage> image1(surface->makeImageSnapshot());
kkinnunen179a8f52015-11-20 13:32:24 -0800344 // just read access should not affect the snapshot
345 REPORTER_ASSERT(reporter, image0->uniqueID() == image1->uniqueID());
346
Robert Phillips8caf85f2018-04-05 09:30:38 -0400347 obj = (surface->*func)(SkSurface::kFlushWrite_BackendHandleAccess);
348 REPORTER_ASSERT(reporter, obj.isValid());
reed9ce9d672016-03-17 10:51:11 -0700349 sk_sp<SkImage> image2(surface->makeImageSnapshot());
kkinnunen179a8f52015-11-20 13:32:24 -0800350 // expect a new image, since we claimed we would write
351 REPORTER_ASSERT(reporter, image0->uniqueID() != image2->uniqueID());
352
Robert Phillips8caf85f2018-04-05 09:30:38 -0400353 obj = (surface->*func)(SkSurface::kDiscardWrite_BackendHandleAccess);
354 REPORTER_ASSERT(reporter, obj.isValid());
reed9ce9d672016-03-17 10:51:11 -0700355 sk_sp<SkImage> image3(surface->makeImageSnapshot());
kkinnunen179a8f52015-11-20 13:32:24 -0800356 // expect a new(er) image, since we claimed we would write
357 REPORTER_ASSERT(reporter, image0->uniqueID() != image3->uniqueID());
358 REPORTER_ASSERT(reporter, image2->uniqueID() != image3->uniqueID());
359}
Robert Phillips8caf85f2018-04-05 09:30:38 -0400360
kkinnunen179a8f52015-11-20 13:32:24 -0800361// No CPU test.
bsalomon68d91342016-04-12 09:59:58 -0700362DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceBackendHandleAccessIDs_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800363 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
Robert Phillips8caf85f2018-04-05 09:30:38 -0400364 {
365 auto surface(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
366 test_backend_unique_id<GrBackendTexture, &SkSurface::getBackendTexture>(reporter,
367 surface.get());
368 }
369 {
370 auto surface(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
371 test_backend_unique_id<GrBackendRenderTarget, &SkSurface::getBackendRenderTarget>(
372 reporter, surface.get());
kkinnunen179a8f52015-11-20 13:32:24 -0800373 }
374 }
375}
kkinnunen179a8f52015-11-20 13:32:24 -0800376
377// Verify that the right canvas commands trigger a copy on write.
378static void test_copy_on_write(skiatest::Reporter* reporter, SkSurface* surface) {
junov@chromium.org995beb62013-03-28 13:49:22 +0000379 SkCanvas* canvas = surface->getCanvas();
380
381 const SkRect testRect =
382 SkRect::MakeXYWH(SkIntToScalar(0), SkIntToScalar(0),
383 SkIntToScalar(4), SkIntToScalar(5));
junov@chromium.org995beb62013-03-28 13:49:22 +0000384 SkPath testPath;
385 testPath.addRect(SkRect::MakeXYWH(SkIntToScalar(0), SkIntToScalar(0),
386 SkIntToScalar(2), SkIntToScalar(1)));
387
388 const SkIRect testIRect = SkIRect::MakeXYWH(0, 0, 2, 1);
389
390 SkRegion testRegion;
391 testRegion.setRect(testIRect);
392
393
394 const SkColor testColor = 0x01020304;
395 const SkPaint testPaint;
396 const SkPoint testPoints[3] = {
397 {SkIntToScalar(0), SkIntToScalar(0)},
398 {SkIntToScalar(2), SkIntToScalar(1)},
399 {SkIntToScalar(0), SkIntToScalar(2)}
400 };
401 const size_t testPointCount = 3;
402
403 SkBitmap testBitmap;
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +0000404 testBitmap.allocN32Pixels(10, 10);
robertphillips@google.comd1ce77d2013-10-09 12:51:09 +0000405 testBitmap.eraseColor(0);
junov@chromium.org995beb62013-03-28 13:49:22 +0000406
407 SkRRect testRRect;
408 testRRect.setRectXY(testRect, SK_Scalar1, SK_Scalar1);
409
410 SkString testText("Hello World");
411 const SkPoint testPoints2[] = {
412 { SkIntToScalar(0), SkIntToScalar(1) },
413 { SkIntToScalar(1), SkIntToScalar(1) },
414 { SkIntToScalar(2), SkIntToScalar(1) },
415 { SkIntToScalar(3), SkIntToScalar(1) },
416 { SkIntToScalar(4), SkIntToScalar(1) },
417 { SkIntToScalar(5), SkIntToScalar(1) },
418 { SkIntToScalar(6), SkIntToScalar(1) },
419 { SkIntToScalar(7), SkIntToScalar(1) },
420 { SkIntToScalar(8), SkIntToScalar(1) },
421 { SkIntToScalar(9), SkIntToScalar(1) },
422 { SkIntToScalar(10), SkIntToScalar(1) },
423 };
424
425#define EXPECT_COPY_ON_WRITE(command) \
426 { \
reed9ce9d672016-03-17 10:51:11 -0700427 sk_sp<SkImage> imageBefore = surface->makeImageSnapshot(); \
428 sk_sp<SkImage> aur_before(imageBefore); \
junov@chromium.org995beb62013-03-28 13:49:22 +0000429 canvas-> command ; \
reed9ce9d672016-03-17 10:51:11 -0700430 sk_sp<SkImage> imageAfter = surface->makeImageSnapshot(); \
431 sk_sp<SkImage> aur_after(imageAfter); \
junov@chromium.org995beb62013-03-28 13:49:22 +0000432 REPORTER_ASSERT(reporter, imageBefore != imageAfter); \
433 }
434
435 EXPECT_COPY_ON_WRITE(clear(testColor))
436 EXPECT_COPY_ON_WRITE(drawPaint(testPaint))
437 EXPECT_COPY_ON_WRITE(drawPoints(SkCanvas::kPoints_PointMode, testPointCount, testPoints, \
438 testPaint))
439 EXPECT_COPY_ON_WRITE(drawOval(testRect, testPaint))
440 EXPECT_COPY_ON_WRITE(drawRect(testRect, testPaint))
441 EXPECT_COPY_ON_WRITE(drawRRect(testRRect, testPaint))
442 EXPECT_COPY_ON_WRITE(drawPath(testPath, testPaint))
443 EXPECT_COPY_ON_WRITE(drawBitmap(testBitmap, 0, 0))
reede47829b2015-08-06 10:02:53 -0700444 EXPECT_COPY_ON_WRITE(drawBitmapRect(testBitmap, testRect, nullptr))
halcanary96fcdcc2015-08-27 07:41:13 -0700445 EXPECT_COPY_ON_WRITE(drawBitmapNine(testBitmap, testIRect, testRect, nullptr))
Cary Clark2a475ea2017-04-28 15:35:12 -0400446 EXPECT_COPY_ON_WRITE(drawString(testText, 0, 1, testPaint))
junov@chromium.org995beb62013-03-28 13:49:22 +0000447 EXPECT_COPY_ON_WRITE(drawPosText(testText.c_str(), testText.size(), testPoints2, \
448 testPaint))
kkinnunen179a8f52015-11-20 13:32:24 -0800449}
450DEF_TEST(SurfaceCopyOnWrite, reporter) {
reede8f30622016-03-23 18:59:25 -0700451 test_copy_on_write(reporter, create_surface().get());
kkinnunen179a8f52015-11-20 13:32:24 -0800452}
egdanielab527a52016-06-28 08:07:26 -0700453DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceCopyOnWrite_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800454 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
bsalomon8b7451a2016-05-11 06:33:06 -0700455 auto surface(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
reede8f30622016-03-23 18:59:25 -0700456 test_copy_on_write(reporter, surface.get());
fmalitae2639082015-08-06 07:04:51 -0700457 }
junov@chromium.org995beb62013-03-28 13:49:22 +0000458}
459
kkinnunen179a8f52015-11-20 13:32:24 -0800460static void test_writable_after_snapshot_release(skiatest::Reporter* reporter,
461 SkSurface* surface) {
junov@chromium.orgaf058352013-04-03 15:03:26 +0000462 // This test succeeds by not triggering an assertion.
463 // The test verifies that the surface remains writable (usable) after
464 // acquiring and releasing a snapshot without triggering a copy on write.
junov@chromium.orgaf058352013-04-03 15:03:26 +0000465 SkCanvas* canvas = surface->getCanvas();
466 canvas->clear(1);
reed9ce9d672016-03-17 10:51:11 -0700467 surface->makeImageSnapshot(); // Create and destroy SkImage
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000468 canvas->clear(2); // Must not assert internally
junov@chromium.org995beb62013-03-28 13:49:22 +0000469}
kkinnunen179a8f52015-11-20 13:32:24 -0800470DEF_TEST(SurfaceWriteableAfterSnapshotRelease, reporter) {
reede8f30622016-03-23 18:59:25 -0700471 test_writable_after_snapshot_release(reporter, create_surface().get());
kkinnunen179a8f52015-11-20 13:32:24 -0800472}
egdanielab527a52016-06-28 08:07:26 -0700473DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceWriteableAfterSnapshotRelease_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800474 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
bsalomon8b7451a2016-05-11 06:33:06 -0700475 auto surface(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
reede8f30622016-03-23 18:59:25 -0700476 test_writable_after_snapshot_release(reporter, surface.get());
kkinnunen179a8f52015-11-20 13:32:24 -0800477 }
478}
junov@chromium.orgda904742013-05-01 22:38:16 +0000479
kkinnunen179a8f52015-11-20 13:32:24 -0800480static void test_crbug263329(skiatest::Reporter* reporter,
481 SkSurface* surface1,
482 SkSurface* surface2) {
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000483 // This is a regression test for crbug.com/263329
484 // Bug was caused by onCopyOnWrite releasing the old surface texture
485 // back to the scratch texture pool even though the texture is used
486 // by and active SkImage_Gpu.
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000487 SkCanvas* canvas1 = surface1->getCanvas();
488 SkCanvas* canvas2 = surface2->getCanvas();
489 canvas1->clear(1);
reed9ce9d672016-03-17 10:51:11 -0700490 sk_sp<SkImage> image1(surface1->makeImageSnapshot());
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000491 // Trigger copy on write, new backing is a scratch texture
492 canvas1->clear(2);
reed9ce9d672016-03-17 10:51:11 -0700493 sk_sp<SkImage> image2(surface1->makeImageSnapshot());
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000494 // Trigger copy on write, old backing should not be returned to scratch
495 // pool because it is held by image2
496 canvas1->clear(3);
497
498 canvas2->clear(4);
reed9ce9d672016-03-17 10:51:11 -0700499 sk_sp<SkImage> image3(surface2->makeImageSnapshot());
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000500 // Trigger copy on write on surface2. The new backing store should not
501 // be recycling a texture that is held by an existing image.
502 canvas2->clear(5);
reed9ce9d672016-03-17 10:51:11 -0700503 sk_sp<SkImage> image4(surface2->makeImageSnapshot());
Robert Phillips87444052017-06-23 14:09:30 -0400504 REPORTER_ASSERT(reporter, as_IB(image4)->getTexture() != as_IB(image3)->getTexture());
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000505 // The following assertion checks crbug.com/263329
Robert Phillips87444052017-06-23 14:09:30 -0400506 REPORTER_ASSERT(reporter, as_IB(image4)->getTexture() != as_IB(image2)->getTexture());
507 REPORTER_ASSERT(reporter, as_IB(image4)->getTexture() != as_IB(image1)->getTexture());
508 REPORTER_ASSERT(reporter, as_IB(image3)->getTexture() != as_IB(image2)->getTexture());
509 REPORTER_ASSERT(reporter, as_IB(image3)->getTexture() != as_IB(image1)->getTexture());
510 REPORTER_ASSERT(reporter, as_IB(image2)->getTexture() != as_IB(image1)->getTexture());
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000511}
egdanielab527a52016-06-28 08:07:26 -0700512DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceCRBug263329_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800513 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
bsalomon8b7451a2016-05-11 06:33:06 -0700514 auto surface1(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
515 auto surface2(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
reede8f30622016-03-23 18:59:25 -0700516 test_crbug263329(reporter, surface1.get(), surface2.get());
kkinnunen179a8f52015-11-20 13:32:24 -0800517 }
518}
commit-bot@chromium.org4d24b742013-07-25 23:29:40 +0000519
kkinnunen179a8f52015-11-20 13:32:24 -0800520DEF_TEST(SurfaceGetTexture, reporter) {
reede8f30622016-03-23 18:59:25 -0700521 auto surface(create_surface());
reed9ce9d672016-03-17 10:51:11 -0700522 sk_sp<SkImage> image(surface->makeImageSnapshot());
Robert Phillips6de99042017-01-31 11:31:39 -0500523 REPORTER_ASSERT(reporter, !as_IB(image)->isTextureBacked());
kkinnunen179a8f52015-11-20 13:32:24 -0800524 surface->notifyContentWillChange(SkSurface::kDiscard_ContentChangeMode);
Robert Phillips6de99042017-01-31 11:31:39 -0500525 REPORTER_ASSERT(reporter, !as_IB(image)->isTextureBacked());
kkinnunen179a8f52015-11-20 13:32:24 -0800526}
egdanielab527a52016-06-28 08:07:26 -0700527DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfacepeekTexture_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800528 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
bsalomon8b7451a2016-05-11 06:33:06 -0700529 auto surface(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
reed9ce9d672016-03-17 10:51:11 -0700530 sk_sp<SkImage> image(surface->makeImageSnapshot());
Robert Phillips6de99042017-01-31 11:31:39 -0500531
532 REPORTER_ASSERT(reporter, as_IB(image)->isTextureBacked());
Robert Phillipsc5509952018-04-04 15:54:55 -0400533 GrBackendTexture backendTex = image->getBackendTexture(false);
534 REPORTER_ASSERT(reporter, backendTex.isValid());
kkinnunen179a8f52015-11-20 13:32:24 -0800535 surface->notifyContentWillChange(SkSurface::kDiscard_ContentChangeMode);
Robert Phillips6de99042017-01-31 11:31:39 -0500536 REPORTER_ASSERT(reporter, as_IB(image)->isTextureBacked());
Robert Phillipsc5509952018-04-04 15:54:55 -0400537 GrBackendTexture backendTex2 = image->getBackendTexture(false);
538 REPORTER_ASSERT(reporter, GrBackendTexture::TestingOnly_Equals(backendTex, backendTex2));
junov@chromium.orgda904742013-05-01 22:38:16 +0000539 }
junov@chromium.orgda904742013-05-01 22:38:16 +0000540}
bsalomoneaaaf0b2015-01-23 08:08:04 -0800541
reede8f30622016-03-23 18:59:25 -0700542static SkBudgeted is_budgeted(const sk_sp<SkSurface>& surf) {
543 SkSurface_Gpu* gsurf = (SkSurface_Gpu*)surf.get();
Robert Phillips6de99042017-01-31 11:31:39 -0500544
545 GrRenderTargetProxy* proxy = gsurf->getDevice()->accessRenderTargetContext()
546 ->asRenderTargetProxy();
547 return proxy->isBudgeted();
bsalomoneaaaf0b2015-01-23 08:08:04 -0800548}
549
bsalomon5ec26ae2016-02-25 08:33:02 -0800550static SkBudgeted is_budgeted(SkImage* image) {
Robert Phillips0ae6faa2017-03-21 16:22:00 -0400551 return ((SkImage_Gpu*)image)->peekProxy()->isBudgeted();
bsalomoneaaaf0b2015-01-23 08:08:04 -0800552}
553
reed9ce9d672016-03-17 10:51:11 -0700554static SkBudgeted is_budgeted(const sk_sp<SkImage> image) {
555 return is_budgeted(image.get());
556}
557
egdanielab527a52016-06-28 08:07:26 -0700558DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceBudget, reporter, ctxInfo) {
bsalomoneaaaf0b2015-01-23 08:08:04 -0800559 SkImageInfo info = SkImageInfo::MakeN32Premul(8,8);
Robert Phillipsac6b1fa2017-03-20 08:38:50 -0400560 for (auto budgeted : { SkBudgeted::kNo, SkBudgeted::kYes }) {
561 auto surface(SkSurface::MakeRenderTarget(ctxInfo.grContext(), budgeted, info));
562 SkASSERT(surface);
563 REPORTER_ASSERT(reporter, budgeted == is_budgeted(surface));
bsalomoneaaaf0b2015-01-23 08:08:04 -0800564
Robert Phillipsac6b1fa2017-03-20 08:38:50 -0400565 sk_sp<SkImage> image(surface->makeImageSnapshot());
bsalomoneaaaf0b2015-01-23 08:08:04 -0800566
Robert Phillipsac6b1fa2017-03-20 08:38:50 -0400567 // Initially the image shares a texture with the surface, and the
568 // the budgets should always match.
569 REPORTER_ASSERT(reporter, budgeted == is_budgeted(surface));
570 REPORTER_ASSERT(reporter, budgeted == is_budgeted(image));
bsalomoneaaaf0b2015-01-23 08:08:04 -0800571
Robert Phillipsac6b1fa2017-03-20 08:38:50 -0400572 // Now trigger copy-on-write
573 surface->getCanvas()->clear(SK_ColorBLUE);
bsalomoneaaaf0b2015-01-23 08:08:04 -0800574
Robert Phillipsac6b1fa2017-03-20 08:38:50 -0400575 // They don't share a texture anymore but the budgets should still match.
576 REPORTER_ASSERT(reporter, budgeted == is_budgeted(surface));
577 REPORTER_ASSERT(reporter, budgeted == is_budgeted(image));
bsalomoneaaaf0b2015-01-23 08:08:04 -0800578 }
579}
junov@chromium.orgda904742013-05-01 22:38:16 +0000580
kkinnunen179a8f52015-11-20 13:32:24 -0800581static void test_no_canvas1(skiatest::Reporter* reporter,
582 SkSurface* surface,
583 SkSurface::ContentChangeMode mode) {
584 // Test passes by not asserting
585 surface->notifyContentWillChange(mode);
586 SkDEBUGCODE(surface->validate();)
587}
588static void test_no_canvas2(skiatest::Reporter* reporter,
589 SkSurface* surface,
590 SkSurface::ContentChangeMode mode) {
junov@chromium.orgacea3ef2013-04-16 19:41:09 +0000591 // Verifies the robustness of SkSurface for handling use cases where calls
592 // are made before a canvas is created.
reed9ce9d672016-03-17 10:51:11 -0700593 sk_sp<SkImage> image1 = surface->makeImageSnapshot();
594 sk_sp<SkImage> aur_image1(image1);
kkinnunen179a8f52015-11-20 13:32:24 -0800595 SkDEBUGCODE(image1->validate();)
596 SkDEBUGCODE(surface->validate();)
597 surface->notifyContentWillChange(mode);
598 SkDEBUGCODE(image1->validate();)
599 SkDEBUGCODE(surface->validate();)
reed9ce9d672016-03-17 10:51:11 -0700600 sk_sp<SkImage> image2 = surface->makeImageSnapshot();
601 sk_sp<SkImage> aur_image2(image2);
kkinnunen179a8f52015-11-20 13:32:24 -0800602 SkDEBUGCODE(image2->validate();)
603 SkDEBUGCODE(surface->validate();)
604 REPORTER_ASSERT(reporter, image1 != image2);
junov@chromium.orgacea3ef2013-04-16 19:41:09 +0000605}
kkinnunen179a8f52015-11-20 13:32:24 -0800606DEF_TEST(SurfaceNoCanvas, reporter) {
607 SkSurface::ContentChangeMode modes[] =
608 { SkSurface::kDiscard_ContentChangeMode, SkSurface::kRetain_ContentChangeMode};
609 for (auto& test_func : { &test_no_canvas1, &test_no_canvas2 }) {
610 for (auto& mode : modes) {
reede8f30622016-03-23 18:59:25 -0700611 test_func(reporter, create_surface().get(), mode);
kkinnunen179a8f52015-11-20 13:32:24 -0800612 }
613 }
614}
egdanielab527a52016-06-28 08:07:26 -0700615DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceNoCanvas_Gpu, reporter, ctxInfo) {
kkinnunen179a8f52015-11-20 13:32:24 -0800616 SkSurface::ContentChangeMode modes[] =
617 { SkSurface::kDiscard_ContentChangeMode, SkSurface::kRetain_ContentChangeMode};
618 for (auto& surface_func : { &create_gpu_surface, &create_gpu_scratch_surface }) {
619 for (auto& test_func : { &test_no_canvas1, &test_no_canvas2 }) {
620 for (auto& mode : modes) {
bsalomon8b7451a2016-05-11 06:33:06 -0700621 auto surface(surface_func(ctxInfo.grContext(), kPremul_SkAlphaType, nullptr));
reede8f30622016-03-23 18:59:25 -0700622 test_func(reporter, surface.get(), mode);
bsalomone904c092014-07-17 10:50:59 -0700623 }
robertphillips@google.com3bddb382013-11-12 13:51:03 +0000624 }
junov@chromium.orgaf058352013-04-03 15:03:26 +0000625 }
junov@chromium.org995beb62013-03-28 13:49:22 +0000626}
reed9cd016e2016-01-30 10:01:06 -0800627
628static void check_rowbytes_remain_consistent(SkSurface* surface, skiatest::Reporter* reporter) {
reed6ceeebd2016-03-09 14:26:26 -0800629 SkPixmap surfacePM;
630 REPORTER_ASSERT(reporter, surface->peekPixels(&surfacePM));
reed9cd016e2016-01-30 10:01:06 -0800631
reed9ce9d672016-03-17 10:51:11 -0700632 sk_sp<SkImage> image(surface->makeImageSnapshot());
reed6ceeebd2016-03-09 14:26:26 -0800633 SkPixmap pm;
634 REPORTER_ASSERT(reporter, image->peekPixels(&pm));
reed9cd016e2016-01-30 10:01:06 -0800635
reed6ceeebd2016-03-09 14:26:26 -0800636 REPORTER_ASSERT(reporter, surfacePM.rowBytes() == pm.rowBytes());
reed9cd016e2016-01-30 10:01:06 -0800637
638 // trigger a copy-on-write
639 surface->getCanvas()->drawPaint(SkPaint());
reed9ce9d672016-03-17 10:51:11 -0700640 sk_sp<SkImage> image2(surface->makeImageSnapshot());
reed9cd016e2016-01-30 10:01:06 -0800641 REPORTER_ASSERT(reporter, image->uniqueID() != image2->uniqueID());
642
reed6ceeebd2016-03-09 14:26:26 -0800643 SkPixmap pm2;
644 REPORTER_ASSERT(reporter, image2->peekPixels(&pm2));
645 REPORTER_ASSERT(reporter, pm2.rowBytes() == pm.rowBytes());
reed9cd016e2016-01-30 10:01:06 -0800646}
647
648DEF_TEST(surface_rowbytes, reporter) {
649 const SkImageInfo info = SkImageInfo::MakeN32Premul(100, 100);
650
reede8f30622016-03-23 18:59:25 -0700651 auto surf0(SkSurface::MakeRaster(info));
652 check_rowbytes_remain_consistent(surf0.get(), reporter);
reed9cd016e2016-01-30 10:01:06 -0800653
654 // specify a larger rowbytes
reede8f30622016-03-23 18:59:25 -0700655 auto surf1(SkSurface::MakeRaster(info, 500, nullptr));
656 check_rowbytes_remain_consistent(surf1.get(), reporter);
reed9cd016e2016-01-30 10:01:06 -0800657
658 // Try some illegal rowByte values
reede8f30622016-03-23 18:59:25 -0700659 auto s = SkSurface::MakeRaster(info, 396, nullptr); // needs to be at least 400
reed9cd016e2016-01-30 10:01:06 -0800660 REPORTER_ASSERT(reporter, nullptr == s);
Mike Reedf0ffb892017-10-03 14:47:21 -0400661 s = SkSurface::MakeRaster(info, std::numeric_limits<size_t>::max(), nullptr);
reed9cd016e2016-01-30 10:01:06 -0800662 REPORTER_ASSERT(reporter, nullptr == s);
663}
bsalomone63ffef2016-02-05 07:17:34 -0800664
fmalita03912f12016-07-06 06:22:06 -0700665DEF_TEST(surface_raster_zeroinitialized, reporter) {
666 sk_sp<SkSurface> s(SkSurface::MakeRasterN32Premul(100, 100));
667 SkPixmap pixmap;
668 REPORTER_ASSERT(reporter, s->peekPixels(&pixmap));
669
670 for (int i = 0; i < pixmap.info().width(); ++i) {
671 for (int j = 0; j < pixmap.info().height(); ++j) {
672 REPORTER_ASSERT(reporter, *pixmap.addr32(i, j) == 0);
673 }
674 }
675}
676
ericrkc4025182016-05-04 12:01:58 -0700677static sk_sp<SkSurface> create_gpu_surface_backend_texture(
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500678 GrContext* context, int sampleCnt, uint32_t color, GrBackendTexture* outTexture) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500679 GrGpu* gpu = context->contextPriv().getGpu();
680
ericrkc4025182016-05-04 12:01:58 -0700681 const int kWidth = 10;
682 const int kHeight = 10;
Ben Wagner7ecc5962016-11-02 17:07:33 -0400683 std::unique_ptr<uint32_t[]> pixels(new uint32_t[kWidth * kHeight]);
ericrkc4025182016-05-04 12:01:58 -0700684 sk_memset32(pixels.get(), color, kWidth * kHeight);
Greg Daniel7ef28f32017-04-20 16:41:55 +0000685
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500686 *outTexture = gpu->createTestingOnlyBackendTexture(
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500687 pixels.get(), kWidth, kHeight, kRGBA_8888_GrPixelConfig, true, GrMipMapped::kNo);
Greg Daniel7ef28f32017-04-20 16:41:55 +0000688
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500689 if (!outTexture->isValid() || !gpu->isTestingOnlyBackendTexture(*outTexture)) {
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500690 return nullptr;
691 }
Greg Daniel7ef28f32017-04-20 16:41:55 +0000692
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500693 sk_sp<SkSurface> surface = SkSurface::MakeFromBackendTexture(context, *outTexture,
Robert Phillipse44ef102017-07-21 15:37:19 -0400694 kTopLeft_GrSurfaceOrigin, sampleCnt,
Greg Danielfaa095e2017-12-19 13:15:02 -0500695 kRGBA_8888_SkColorType,
Greg Daniel7ef28f32017-04-20 16:41:55 +0000696 nullptr, nullptr);
ericrkc4025182016-05-04 12:01:58 -0700697 if (!surface) {
Brian Salomon26102cb2018-03-09 09:33:19 -0500698 gpu->deleteTestingOnlyBackendTexture(*outTexture);
ericrkc4025182016-05-04 12:01:58 -0700699 return nullptr;
700 }
ericrkc4025182016-05-04 12:01:58 -0700701 return surface;
702}
bsalomone63ffef2016-02-05 07:17:34 -0800703
ericrkc4025182016-05-04 12:01:58 -0700704static sk_sp<SkSurface> create_gpu_surface_backend_texture_as_render_target(
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)) {
ericrkc4025182016-05-04 12:01:58 -0700717 return nullptr;
718 }
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500719
720 sk_sp<SkSurface> surface = SkSurface::MakeFromBackendTextureAsRenderTarget(
Greg Danielfaa095e2017-12-19 13:15:02 -0500721 context, *outTexture, kTopLeft_GrSurfaceOrigin, sampleCnt, kRGBA_8888_SkColorType,
722 nullptr, nullptr);
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500723
724 if (!surface) {
Brian Salomon26102cb2018-03-09 09:33:19 -0500725 gpu->deleteTestingOnlyBackendTexture(*outTexture);
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500726 return nullptr;
727 }
ericrkc4025182016-05-04 12:01:58 -0700728 return surface;
729}
730
731static void test_surface_clear(skiatest::Reporter* reporter, sk_sp<SkSurface> surface,
Robert Phillips2c862492017-01-18 10:08:39 -0500732 std::function<sk_sp<GrSurfaceContext>(SkSurface*)> grSurfaceGetter,
ericrkc4025182016-05-04 12:01:58 -0700733 uint32_t expectedValue) {
bsalomone63ffef2016-02-05 07:17:34 -0800734 if (!surface) {
735 ERRORF(reporter, "Could not create GPU SkSurface.");
736 return;
737 }
738 int w = surface->width();
739 int h = surface->height();
Ben Wagner7ecc5962016-11-02 17:07:33 -0400740 std::unique_ptr<uint32_t[]> pixels(new uint32_t[w * h]);
ericrkc4025182016-05-04 12:01:58 -0700741 sk_memset32(pixels.get(), ~expectedValue, w * h);
bsalomone63ffef2016-02-05 07:17:34 -0800742
Robert Phillips2c862492017-01-18 10:08:39 -0500743 sk_sp<GrSurfaceContext> grSurfaceContext(grSurfaceGetter(surface.get()));
744 if (!grSurfaceContext) {
bsalomone63ffef2016-02-05 07:17:34 -0800745 ERRORF(reporter, "Could access render target of GPU SkSurface.");
746 return;
747 }
bsalomon2fba8092016-02-05 13:47:06 -0800748 surface.reset();
Robert Phillips2c862492017-01-18 10:08:39 -0500749
750 SkImageInfo ii = SkImageInfo::Make(w, h, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
751 grSurfaceContext->readPixels(ii, pixels.get(), 0, 0, 0);
bsalomone63ffef2016-02-05 07:17:34 -0800752 for (int y = 0; y < h; ++y) {
753 for (int x = 0; x < w; ++x) {
754 uint32_t pixel = pixels.get()[y * w + x];
755 if (pixel != expectedValue) {
756 SkString msg;
757 if (expectedValue) {
758 msg = "SkSurface should have left render target unmodified";
759 } else {
760 msg = "SkSurface should have cleared the render target";
761 }
762 ERRORF(reporter,
763 "%s but read 0x%08x (instead of 0x%08x) at %x,%d", msg.c_str(), pixel,
764 expectedValue, x, y);
765 return;
766 }
767 }
768 }
769}
770
bsalomon758586c2016-04-06 14:02:39 -0700771DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(SurfaceClear_Gpu, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -0700772 GrContext* context = ctxInfo.grContext();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500773 GrGpu* gpu = context->contextPriv().getGpu();
ericrkc4025182016-05-04 12:01:58 -0700774
Robert Phillips2c862492017-01-18 10:08:39 -0500775 std::function<sk_sp<GrSurfaceContext>(SkSurface*)> grSurfaceContextGetters[] = {
egdanielab527a52016-06-28 08:07:26 -0700776 [] (SkSurface* s){
Robert Phillips2c862492017-01-18 10:08:39 -0500777 return sk_ref_sp(s->getCanvas()->internal_private_accessTopLayerRenderTargetContext());
778 },
779 [] (SkSurface* s){
780 sk_sp<SkImage> i(s->makeImageSnapshot());
781 SkImage_Gpu* gpuImage = (SkImage_Gpu *) as_IB(i);
Robert Phillips6de99042017-01-31 11:31:39 -0500782 sk_sp<GrTextureProxy> proxy = gpuImage->asTextureProxyRef();
Robert Phillips2c862492017-01-18 10:08:39 -0500783 GrContext* context = gpuImage->context();
784 return context->contextPriv().makeWrappedSurfaceContext(std::move(proxy),
785 gpuImage->refColorSpace());
786 }
bsalomone63ffef2016-02-05 07:17:34 -0800787 };
ericrkc4025182016-05-04 12:01:58 -0700788
Robert Phillips2c862492017-01-18 10:08:39 -0500789 for (auto grSurfaceGetter : grSurfaceContextGetters) {
ericrkc4025182016-05-04 12:01:58 -0700790 // Test that non-wrapped RTs are created clear.
bsalomone63ffef2016-02-05 07:17:34 -0800791 for (auto& surface_func : {&create_gpu_surface, &create_gpu_scratch_surface}) {
reede8f30622016-03-23 18:59:25 -0700792 auto surface = surface_func(context, kPremul_SkAlphaType, nullptr);
bsalomone63ffef2016-02-05 07:17:34 -0800793 test_surface_clear(reporter, surface, grSurfaceGetter, 0x0);
794 }
795 // Wrapped RTs are *not* supposed to clear (to allow client to partially update a surface).
ericrkc4025182016-05-04 12:01:58 -0700796 const uint32_t kOrigColor = 0xABABABAB;
797 for (auto& surfaceFunc : {&create_gpu_surface_backend_texture,
798 &create_gpu_surface_backend_texture_as_render_target}) {
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500799 GrBackendTexture backendTex;
Brian Salomonbdecacf2018-02-02 20:32:49 -0500800 auto surface = surfaceFunc(context, 1, kOrigColor, &backendTex);
ericrkc4025182016-05-04 12:01:58 -0700801 test_surface_clear(reporter, surface, grSurfaceGetter, kOrigColor);
802 surface.reset();
Brian Salomon26102cb2018-03-09 09:33:19 -0500803 gpu->deleteTestingOnlyBackendTexture(backendTex);
ericrkc4025182016-05-04 12:01:58 -0700804 }
805 }
806}
bsalomone63ffef2016-02-05 07:17:34 -0800807
ericrkc4025182016-05-04 12:01:58 -0700808static void test_surface_draw_partially(
809 skiatest::Reporter* reporter, sk_sp<SkSurface> surface, uint32_t origColor) {
810 const int kW = surface->width();
811 const int kH = surface->height();
812 SkPaint paint;
813 const SkColor kRectColor = ~origColor | 0xFF000000;
814 paint.setColor(kRectColor);
815 surface->getCanvas()->drawRect(SkRect::MakeWH(SkIntToScalar(kW), SkIntToScalar(kH)/2),
816 paint);
Ben Wagner7ecc5962016-11-02 17:07:33 -0400817 std::unique_ptr<uint32_t[]> pixels(new uint32_t[kW * kH]);
ericrkc4025182016-05-04 12:01:58 -0700818 sk_memset32(pixels.get(), ~origColor, kW * kH);
819 // Read back RGBA to avoid format conversions that may not be supported on all platforms.
820 SkImageInfo readInfo = SkImageInfo::Make(kW, kH, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
821 SkAssertResult(surface->readPixels(readInfo, pixels.get(), kW * sizeof(uint32_t), 0, 0));
822 bool stop = false;
823 SkPMColor origColorPM = SkPackARGB_as_RGBA((origColor >> 24 & 0xFF),
824 (origColor >> 0 & 0xFF),
825 (origColor >> 8 & 0xFF),
826 (origColor >> 16 & 0xFF));
827 SkPMColor rectColorPM = SkPackARGB_as_RGBA((kRectColor >> 24 & 0xFF),
828 (kRectColor >> 16 & 0xFF),
829 (kRectColor >> 8 & 0xFF),
830 (kRectColor >> 0 & 0xFF));
831 for (int y = 0; y < kH/2 && !stop; ++y) {
832 for (int x = 0; x < kW && !stop; ++x) {
833 REPORTER_ASSERT(reporter, rectColorPM == pixels[x + y * kW]);
834 if (rectColorPM != pixels[x + y * kW]) {
835 stop = true;
836 }
837 }
838 }
839 stop = false;
840 for (int y = kH/2; y < kH && !stop; ++y) {
841 for (int x = 0; x < kW && !stop; ++x) {
842 REPORTER_ASSERT(reporter, origColorPM == pixels[x + y * kW]);
843 if (origColorPM != pixels[x + y * kW]) {
844 stop = true;
845 }
846 }
847 }
848}
bsalomone63ffef2016-02-05 07:17:34 -0800849
egdanielab527a52016-06-28 08:07:26 -0700850DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfacePartialDraw_Gpu, reporter, ctxInfo) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500851 GrGpu* gpu = ctxInfo.grContext()->contextPriv().getGpu();
ericrkc4025182016-05-04 12:01:58 -0700852 if (!gpu) {
853 return;
854 }
855 static const uint32_t kOrigColor = 0xFFAABBCC;
bsalomone63ffef2016-02-05 07:17:34 -0800856
ericrkc4025182016-05-04 12:01:58 -0700857 for (auto& surfaceFunc : {&create_gpu_surface_backend_texture,
858 &create_gpu_surface_backend_texture_as_render_target}) {
859 // Validate that we can draw to the canvas and that the original texture color is
860 // preserved in pixels that aren't rendered to via the surface.
861 // This works only for non-multisampled case.
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500862 GrBackendTexture backendTex;
Brian Salomonbdecacf2018-02-02 20:32:49 -0500863 auto surface = surfaceFunc(ctxInfo.grContext(), 1, kOrigColor, &backendTex);
ericrkc4025182016-05-04 12:01:58 -0700864 if (surface) {
865 test_surface_draw_partially(reporter, surface, kOrigColor);
866 surface.reset();
Brian Salomon26102cb2018-03-09 09:33:19 -0500867 gpu->deleteTestingOnlyBackendTexture(backendTex);
ericrkc4025182016-05-04 12:01:58 -0700868 }
869 }
870}
871
872
873DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(SurfaceAttachStencil_Gpu, reporter, ctxInfo) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500874 GrGpu* gpu = ctxInfo.grContext()->contextPriv().getGpu();
ericrkc4025182016-05-04 12:01:58 -0700875 if (!gpu) {
876 return;
877 }
Eric Karl5c779752017-05-08 12:02:07 -0700878 if (gpu->caps()->avoidStencilBuffers()) {
879 return;
880 }
ericrkc4025182016-05-04 12:01:58 -0700881 static const uint32_t kOrigColor = 0xFFAABBCC;
882
Robert Phillips6be756b2018-01-16 15:07:54 -0500883 auto resourceProvider = ctxInfo.grContext()->contextPriv().resourceProvider();
884
ericrkc4025182016-05-04 12:01:58 -0700885 for (auto& surfaceFunc : {&create_gpu_surface_backend_texture,
886 &create_gpu_surface_backend_texture_as_render_target}) {
Brian Salomonbdecacf2018-02-02 20:32:49 -0500887 for (int sampleCnt : {1, 4, 8}) {
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500888 GrBackendTexture backendTex;
889 auto surface = surfaceFunc(ctxInfo.grContext(), sampleCnt, kOrigColor, &backendTex);
ericrkc4025182016-05-04 12:01:58 -0700890
Brian Salomonbdecacf2018-02-02 20:32:49 -0500891 if (!surface && sampleCnt > 1) {
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500892 // Certain platforms don't support MSAA, skip these.
893 continue;
ericrkc4025182016-05-04 12:01:58 -0700894 }
895
896 // Validate that we can attach a stencil buffer to an SkSurface created by either of
897 // our surface functions.
Brian Osman11052242016-10-27 14:47:55 -0400898 GrRenderTarget* rt = surface->getCanvas()
899 ->internal_private_accessTopLayerRenderTargetContext()->accessRenderTarget();
Robert Phillips6be756b2018-01-16 15:07:54 -0500900 REPORTER_ASSERT(reporter, resourceProvider->attachStencilAttachment(rt));
Brian Salomon26102cb2018-03-09 09:33:19 -0500901 gpu->deleteTestingOnlyBackendTexture(backendTex);
ericrkc4025182016-05-04 12:01:58 -0700902 }
bsalomone63ffef2016-02-05 07:17:34 -0800903 }
904}
brianosman0e22eb82016-08-30 07:07:59 -0700905
906static void test_surface_creation_and_snapshot_with_color_space(
907 skiatest::Reporter* reporter,
908 const char* prefix,
Mike Klein37854712018-06-26 11:43:06 -0400909 bool supportsF16,
910 bool supportsF32,
Brian Osman10fc6fd2018-03-02 11:01:10 -0500911 bool supports1010102,
brianosman0e22eb82016-08-30 07:07:59 -0700912 std::function<sk_sp<SkSurface>(const SkImageInfo&)> surfaceMaker) {
913
Matt Sarett77a7a1b2017-02-07 13:56:11 -0500914 auto srgbColorSpace = SkColorSpace::MakeSRGB();
Brian Osman36703d92017-12-12 14:09:31 -0500915 const SkMatrix44* srgbMatrix = srgbColorSpace->toXYZD50();
raftias94888332016-10-18 10:02:51 -0700916 SkASSERT(srgbMatrix);
Matt Sarett99e3f7d2016-10-28 12:51:08 -0400917 SkColorSpaceTransferFn oddGamma;
918 oddGamma.fA = 1.0f;
919 oddGamma.fB = oddGamma.fC = oddGamma.fD = oddGamma.fE = oddGamma.fF = 0.0f;
920 oddGamma.fG = 4.0f;
Brian Osman526972e2016-10-24 09:24:02 -0400921 auto oddColorSpace = SkColorSpace::MakeRGB(oddGamma, *srgbMatrix);
Matt Sarett77a7a1b2017-02-07 13:56:11 -0500922 auto linearColorSpace = SkColorSpace::MakeSRGBLinear();
brianosman0e22eb82016-08-30 07:07:59 -0700923
924 const struct {
925 SkColorType fColorType;
926 sk_sp<SkColorSpace> fColorSpace;
927 bool fShouldWork;
928 const char* fDescription;
929 } testConfigs[] = {
Mike Klein37854712018-06-26 11:43:06 -0400930 { kN32_SkColorType, nullptr, true, "N32-nullptr" },
931 { kN32_SkColorType, linearColorSpace, true, "N32-linear" },
932 { kN32_SkColorType, srgbColorSpace, true, "N32-srgb" },
933 { kN32_SkColorType, oddColorSpace, true, "N32-odd" },
934 { kRGBA_F16_SkColorType, nullptr, supportsF16, "F16-nullptr" },
935 { kRGBA_F16_SkColorType, linearColorSpace, supportsF16, "F16-linear" },
936 { kRGBA_F16_SkColorType, srgbColorSpace, supportsF16, "F16-srgb" },
937 { kRGBA_F16_SkColorType, oddColorSpace, supportsF16, "F16-odd" },
938 { kRGBA_F32_SkColorType, nullptr, supportsF32, "F32-nullptr" },
939 { kRGBA_F32_SkColorType, linearColorSpace, supportsF32, "F32-linear" },
940 { kRGBA_F32_SkColorType, srgbColorSpace, supportsF32, "F32-srgb" },
941 { kRGBA_F32_SkColorType, oddColorSpace, supportsF32, "F32-odd" },
942 { kRGB_565_SkColorType, srgbColorSpace, false, "565-srgb" },
943 { kAlpha_8_SkColorType, srgbColorSpace, false, "A8-srgb" },
944 { kRGBA_1010102_SkColorType, nullptr, supports1010102, "1010102-nullptr" },
brianosman0e22eb82016-08-30 07:07:59 -0700945 };
946
947 for (auto& testConfig : testConfigs) {
948 SkString fullTestName = SkStringPrintf("%s-%s", prefix, testConfig.fDescription);
949 SkImageInfo info = SkImageInfo::Make(10, 10, testConfig.fColorType, kPremul_SkAlphaType,
950 testConfig.fColorSpace);
951
brianosman0e22eb82016-08-30 07:07:59 -0700952 auto surface(surfaceMaker(info));
Mike Klein37854712018-06-26 11:43:06 -0400953 REPORTER_ASSERT(reporter,
954 SkToBool(surface) == testConfig.fShouldWork, fullTestName.c_str());
brianosman0e22eb82016-08-30 07:07:59 -0700955
Mike Klein37854712018-06-26 11:43:06 -0400956 if (testConfig.fShouldWork && surface) {
brianosman0e22eb82016-08-30 07:07:59 -0700957 sk_sp<SkImage> image(surface->makeImageSnapshot());
Brian Salomon1c80e992018-01-29 09:50:47 -0500958 REPORTER_ASSERT(reporter, image, testConfig.fDescription);
brianosman0e22eb82016-08-30 07:07:59 -0700959 SkColorSpace* imageColorSpace = as_IB(image)->onImageInfo().colorSpace();
Brian Salomon1c80e992018-01-29 09:50:47 -0500960 REPORTER_ASSERT(reporter, imageColorSpace == testConfig.fColorSpace.get(),
961 fullTestName.c_str());
brianosman0e22eb82016-08-30 07:07:59 -0700962 }
963 }
964}
965
966DEF_TEST(SurfaceCreationWithColorSpace, reporter) {
967 auto surfaceMaker = [](const SkImageInfo& info) {
968 return SkSurface::MakeRaster(info);
969 };
970
Mike Klein37854712018-06-26 11:43:06 -0400971 test_surface_creation_and_snapshot_with_color_space(reporter, "raster",
972 true, true, true,
Brian Osman10fc6fd2018-03-02 11:01:10 -0500973 surfaceMaker);
brianosman0e22eb82016-08-30 07:07:59 -0700974}
975
brianosman0e22eb82016-08-30 07:07:59 -0700976DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SurfaceCreationWithColorSpace_Gpu, reporter, ctxInfo) {
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400977 auto context = ctxInfo.grContext();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500978
Mike Klein37854712018-06-26 11:43:06 -0400979 bool supportsF16 = context->contextPriv().caps()->isConfigRenderable(kRGBA_half_GrPixelConfig),
980 supportsF32 = context->contextPriv().caps()->isConfigRenderable(kRGBA_float_GrPixelConfig),
981 supports1010102 = context->contextPriv().caps()->isConfigRenderable(kRGBA_1010102_GrPixelConfig);
982
brianosman0e22eb82016-08-30 07:07:59 -0700983 auto surfaceMaker = [context](const SkImageInfo& info) {
984 return SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, info);
985 };
986
Mike Klein37854712018-06-26 11:43:06 -0400987 test_surface_creation_and_snapshot_with_color_space(reporter, "gpu",
988 supportsF16, supportsF32, supports1010102,
989 surfaceMaker);
brianosman0e22eb82016-08-30 07:07:59 -0700990
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500991 std::vector<GrBackendTexture> backendTextures;
992 auto wrappedSurfaceMaker = [ context, &backendTextures ](const SkImageInfo& info) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500993 GrGpu* gpu = context->contextPriv().getGpu();
994
Greg Daniel7ef28f32017-04-20 16:41:55 +0000995 static const int kSize = 10;
Brian Osman2b23c4b2018-06-01 12:25:08 -0400996 GrPixelConfig config = SkImageInfo2GrPixelConfig(info);
Greg Daniel0a7aa142018-02-21 13:02:32 -0500997 SkASSERT(kUnknown_GrPixelConfig != config);
brianosman0e22eb82016-08-30 07:07:59 -0700998
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500999 GrBackendTexture backendTex = gpu->createTestingOnlyBackendTexture(
Robert Phillipsd21b2a52017-12-12 13:01:25 -05001000 nullptr, kSize, kSize, config, true, GrMipMapped::kNo);
Greg Daniel7ef28f32017-04-20 16:41:55 +00001001
Greg Daniel5366e592018-01-10 09:57:53 -05001002 if (!backendTex.isValid() ||
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001003 !gpu->isTestingOnlyBackendTexture(backendTex)) {
brianosman0e22eb82016-08-30 07:07:59 -07001004 return sk_sp<SkSurface>(nullptr);
1005 }
Robert Phillipsd21b2a52017-12-12 13:01:25 -05001006 backendTextures.push_back(backendTex);
Greg Daniel7ef28f32017-04-20 16:41:55 +00001007
1008 return SkSurface::MakeFromBackendTexture(context, backendTex,
Robert Phillipse44ef102017-07-21 15:37:19 -04001009 kTopLeft_GrSurfaceOrigin, 0,
Greg Danielfaa095e2017-12-19 13:15:02 -05001010 info.colorType(),
Greg Daniel7ef28f32017-04-20 16:41:55 +00001011 sk_ref_sp(info.colorSpace()), nullptr);
brianosman0e22eb82016-08-30 07:07:59 -07001012 };
1013
Mike Klein37854712018-06-26 11:43:06 -04001014 test_surface_creation_and_snapshot_with_color_space(reporter, "wrapped",
1015 supportsF16, supportsF32, supports1010102,
1016 wrappedSurfaceMaker);
brianosman0e22eb82016-08-30 07:07:59 -07001017
Robert Phillips6cdc22c2017-05-11 16:29:14 -04001018 context->flush();
1019
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001020 GrGpu* gpu = context->contextPriv().getGpu();
Robert Phillips2fbbd032018-04-10 10:26:44 -04001021 gpu->testingOnly_flushGpuAndSync();
Robert Phillipsd21b2a52017-12-12 13:01:25 -05001022 for (auto backendTex : backendTextures) {
Brian Salomon26102cb2018-03-09 09:33:19 -05001023 gpu->deleteTestingOnlyBackendTexture(backendTex);
brianosman0e22eb82016-08-30 07:07:59 -07001024 }
1025}
Matt Sarett22886c42016-11-22 11:31:41 -05001026
1027static void test_overdraw_surface(skiatest::Reporter* r, SkSurface* surface) {
Matt Sarette11b6142016-11-28 18:28:07 -05001028 SkOverdrawCanvas canvas(surface->getCanvas());
1029 canvas.drawPaint(SkPaint());
Matt Sarett22886c42016-11-22 11:31:41 -05001030 sk_sp<SkImage> image = surface->makeImageSnapshot();
1031
1032 SkBitmap bitmap;
Cary Clark4f5a79c2018-02-07 15:51:00 -05001033 image->asLegacyBitmap(&bitmap);
Matt Sarett22886c42016-11-22 11:31:41 -05001034 for (int y = 0; y < 10; y++) {
1035 for (int x = 0; x < 10; x++) {
1036 REPORTER_ASSERT(r, 1 == SkGetPackedA32(*bitmap.getAddr32(x, y)));
1037 }
1038 }
1039}
1040
1041DEF_TEST(OverdrawSurface_Raster, r) {
1042 sk_sp<SkSurface> surface = create_surface();
1043 test_overdraw_surface(r, surface.get());
1044}
1045
Matt Sarett22886c42016-11-22 11:31:41 -05001046DEF_GPUTEST_FOR_RENDERING_CONTEXTS(OverdrawSurface_Gpu, r, ctxInfo) {
1047 GrContext* context = ctxInfo.grContext();
1048 sk_sp<SkSurface> surface = create_gpu_surface(context);
1049 test_overdraw_surface(r, surface.get());
1050}
Mike Reed44d04bd2017-06-28 19:57:21 -04001051
1052DEF_TEST(Surface_null, r) {
1053 REPORTER_ASSERT(r, SkSurface::MakeNull(0, 0) == nullptr);
1054
1055 const int w = 37;
1056 const int h = 1000;
1057 auto surf = SkSurface::MakeNull(w, h);
1058 auto canvas = surf->getCanvas();
1059
1060 canvas->drawPaint(SkPaint()); // should not crash, but don't expect anything to draw
1061 REPORTER_ASSERT(r, surf->makeImageSnapshot() == nullptr);
1062}
Mike Reedd4746982018-02-07 16:05:29 -05001063
1064// assert: if a given imageinfo is valid for a surface, then it must be valid for an image
1065// (so the snapshot can succeed)
1066DEF_TEST(surface_image_unity, reporter) {
1067 auto do_test = [reporter](const SkImageInfo& info) {
1068 size_t rowBytes = info.minRowBytes();
1069 auto surf = SkSurface::MakeRaster(info, rowBytes, nullptr);
1070 if (surf) {
1071 auto img = surf->makeImageSnapshot();
1072 if (!img && false) { // change to true to document the differences
1073 SkDebugf("image failed: [%08X %08X] %14s %s\n",
1074 info.width(), info.height(),
1075 sk_tool_utils::colortype_name(info.colorType()),
1076 sk_tool_utils::alphatype_name(info.alphaType()));
1077 return;
1078 }
1079 REPORTER_ASSERT(reporter, img != nullptr);
1080
1081 char dummyPixel = 0; // just need a valid address (not a valid size)
1082 SkPixmap pmap = { info, &dummyPixel, rowBytes };
1083 img = SkImage::MakeFromRaster(pmap, nullptr, nullptr);
1084 REPORTER_ASSERT(reporter, img != nullptr);
1085 }
1086 };
1087
Mike Klein955b3d52018-02-20 11:55:48 -05001088 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 -05001089 for (int cti = 0; cti <= kLastEnum_SkColorType; ++cti) {
Mike Reedd4746982018-02-07 16:05:29 -05001090 SkColorType ct = static_cast<SkColorType>(cti);
Mike Klein30dc8f92018-02-16 10:08:10 -05001091 for (int ati = 0; ati <= kLastEnum_SkAlphaType; ++ati) {
Mike Reedd4746982018-02-07 16:05:29 -05001092 SkAlphaType at = static_cast<SkAlphaType>(ati);
1093 for (int32_t size : sizes) {
Mike Klein955b3d52018-02-20 11:55:48 -05001094 // Large allocations tend to make the 32-bit bots run out of virtual address space.
1095 if (sizeof(size_t) == 4 && size > (1<<20)) {
1096 continue;
1097 }
Mike Reedd4746982018-02-07 16:05:29 -05001098 do_test(SkImageInfo::Make(1, size, ct, at));
1099 do_test(SkImageInfo::Make(size, 1, ct, at));
1100 }
1101 }
1102 }
1103}