blob: 9ba16c9b174a3ce0708d1bc95591f10e78dbe216 [file] [log] [blame]
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +00001/*
2 * Copyright 2011 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 */
7
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +00008#include "SkCanvas.h"
Cary Clarka4083c92017-09-15 11:59:23 -04009#include "SkColorData.h"
Brian Salomon5fba7ad2018-03-22 10:01:16 -040010#include "SkImageInfoPriv.h"
reed@google.com4b163ed2012-08-07 21:35:13 +000011#include "SkMathPriv.h"
reed4af35f32014-06-27 17:47:49 -070012#include "SkSurface.h"
tfarina@chromium.org4ee16bf2014-01-10 22:08:27 +000013#include "Test.h"
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +000014#include "sk_tool_utils.h"
tfarina@chromium.org4ee16bf2014-01-10 22:08:27 +000015
Brian Salomond17f6582017-07-19 18:28:58 -040016#include "GrBackendSurface.h"
kkinnunen15302832015-12-01 04:35:26 -080017#include "GrContext.h"
Robert Phillips1afd4cd2018-01-08 13:40:32 -050018#include "GrContextPriv.h"
Brian Osman33910292017-04-18 14:38:53 -040019#include "GrGpu.h"
Robert Phillips0bd24dc2018-01-16 08:06:32 -050020#include "GrProxyProvider.h"
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000021
kkinnunen15302832015-12-01 04:35:26 -080022#include <initializer_list>
23
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000024static const int DEV_W = 100, DEV_H = 100;
25static const SkIRect DEV_RECT = SkIRect::MakeWH(DEV_W, DEV_H);
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000026static const U8CPU DEV_PAD = 0xee;
27
bsalomonf0674512015-07-28 13:26:15 -070028static SkPMColor get_canvas_color(int x, int y) {
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000029 SkASSERT(x >= 0 && x < DEV_W);
30 SkASSERT(y >= 0 && y < DEV_H);
31
32 U8CPU r = x;
33 U8CPU g = y;
34 U8CPU b = 0xc;
35
bsalomon@google.com31648eb2011-11-23 15:01:08 +000036 U8CPU a = 0x0;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000037 switch ((x+y) % 5) {
38 case 0:
39 a = 0xff;
40 break;
41 case 1:
42 a = 0x80;
43 break;
44 case 2:
45 a = 0xCC;
46 break;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000047 case 3:
48 a = 0x00;
49 break;
bsalomon@google.com31648eb2011-11-23 15:01:08 +000050 case 4:
51 a = 0x01;
52 break;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000053 }
54 return SkPremultiplyARGBInline(a, r, g, b);
55}
56
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000057// assumes any premu/.unpremul has been applied
bsalomonf0674512015-07-28 13:26:15 -070058static uint32_t pack_color_type(SkColorType ct, U8CPU a, U8CPU r, U8CPU g, U8CPU b) {
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000059 uint32_t r32;
60 uint8_t* result = reinterpret_cast<uint8_t*>(&r32);
reed@google.com7111d462014-03-25 16:20:24 +000061 switch (ct) {
62 case kBGRA_8888_SkColorType:
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000063 result[0] = b;
64 result[1] = g;
65 result[2] = r;
66 result[3] = a;
67 break;
Brian Salomon5fba7ad2018-03-22 10:01:16 -040068 case kRGBA_8888_SkColorType: // fallthrough
69 case kRGB_888x_SkColorType:
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000070 result[0] = r;
71 result[1] = g;
72 result[2] = b;
73 result[3] = a;
74 break;
75 default:
76 SkASSERT(0);
77 return 0;
78 }
79 return r32;
80}
81
bsalomonf0674512015-07-28 13:26:15 -070082static uint32_t get_bitmap_color(int x, int y, int w, SkColorType ct, SkAlphaType at) {
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000083 int n = y * w + x;
84 U8CPU b = n & 0xff;
85 U8CPU g = (n >> 8) & 0xff;
86 U8CPU r = (n >> 16) & 0xff;
bsalomon@google.com31648eb2011-11-23 15:01:08 +000087 U8CPU a = 0;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000088 switch ((x+y) % 5) {
89 case 4:
90 a = 0xff;
91 break;
92 case 3:
93 a = 0x80;
94 break;
95 case 2:
96 a = 0xCC;
97 break;
98 case 1:
99 a = 0x01;
100 break;
101 case 0:
102 a = 0x00;
103 break;
104 }
reed@google.com7111d462014-03-25 16:20:24 +0000105 if (kPremul_SkAlphaType == at) {
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000106 r = SkMulDiv255Ceiling(r, a);
107 g = SkMulDiv255Ceiling(g, a);
108 b = SkMulDiv255Ceiling(b, a);
109 }
bsalomonf0674512015-07-28 13:26:15 -0700110 return pack_color_type(ct, a, r, g , b);
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000111}
112
Mike Reed4c790bd2018-02-08 14:10:40 -0500113static void fill_surface(SkSurface* surface) {
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000114 SkBitmap bmp;
Mike Reed4c790bd2018-02-08 14:10:40 -0500115 bmp.allocN32Pixels(DEV_W, DEV_H);
116 for (int y = 0; y < DEV_H; ++y) {
117 for (int x = 0; x < DEV_W; ++x) {
118 *bmp.getAddr32(x, y) = get_canvas_color(x, y);
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000119 }
120 }
Mike Reed4c790bd2018-02-08 14:10:40 -0500121 surface->writePixels(bmp, 0, 0);
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000122}
123
reed@google.com7111d462014-03-25 16:20:24 +0000124/**
125 * Lucky for us, alpha is always in the same spot (SK_A32_SHIFT), for both RGBA and BGRA.
126 * Thus this routine doesn't need to know the exact colortype
127 */
128static uint32_t premul(uint32_t color) {
129 unsigned a = SkGetPackedA32(color);
130 // these next three are not necessarily r,g,b in that order, but they are r,g,b in some order.
131 unsigned c0 = SkGetPackedR32(color);
132 unsigned c1 = SkGetPackedG32(color);
133 unsigned c2 = SkGetPackedB32(color);
134 c0 = SkMulDiv255Ceiling(c0, a);
135 c1 = SkMulDiv255Ceiling(c1, a);
136 c2 = SkMulDiv255Ceiling(c2, a);
137 return SkPackARGB32NoCheck(a, c0, c1, c2);
138}
139
140static SkPMColor convert_to_PMColor(SkColorType ct, SkAlphaType at, uint32_t color) {
141 if (kUnpremul_SkAlphaType == at) {
142 color = premul(color);
143 }
144 switch (ct) {
145 case kRGBA_8888_SkColorType:
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400146 case kRGB_888x_SkColorType: // fallthrough
reed@google.com7111d462014-03-25 16:20:24 +0000147 color = SkSwizzle_RGBA_to_PMColor(color);
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000148 break;
reed@google.com7111d462014-03-25 16:20:24 +0000149 case kBGRA_8888_SkColorType:
150 color = SkSwizzle_BGRA_to_PMColor(color);
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000151 break;
152 default:
reed@google.com7111d462014-03-25 16:20:24 +0000153 SkASSERT(0);
154 break;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000155 }
reed@google.com7111d462014-03-25 16:20:24 +0000156 return color;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000157}
158
bsalomonf0674512015-07-28 13:26:15 -0700159static bool check_pixel(SkPMColor a, SkPMColor b, bool didPremulConversion) {
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000160 if (!didPremulConversion) {
161 return a == b;
162 }
163 int32_t aA = static_cast<int32_t>(SkGetPackedA32(a));
164 int32_t aR = static_cast<int32_t>(SkGetPackedR32(a));
165 int32_t aG = static_cast<int32_t>(SkGetPackedG32(a));
166 int32_t aB = SkGetPackedB32(a);
167
168 int32_t bA = static_cast<int32_t>(SkGetPackedA32(b));
169 int32_t bR = static_cast<int32_t>(SkGetPackedR32(b));
170 int32_t bG = static_cast<int32_t>(SkGetPackedG32(b));
171 int32_t bB = static_cast<int32_t>(SkGetPackedB32(b));
172
173 return aA == bA &&
174 SkAbs32(aR - bR) <= 1 &&
175 SkAbs32(aG - bG) <= 1 &&
176 SkAbs32(aB - bB) <= 1;
177}
178
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400179bool write_should_succeed(const SkImageInfo& dstInfo, const SkImageInfo& srcInfo, bool isGPU) {
180 if (!SkImageInfoValidConversion(dstInfo, srcInfo)) {
181 return false;
182 }
183 if (!isGPU) {
184 return true;
185 }
186 // The GPU backend supports writing unpremul data to a premul dst but not vice versa.
187 if (srcInfo.alphaType() == kPremul_SkAlphaType &&
188 dstInfo.alphaType() == kUnpremul_SkAlphaType) {
189 return false;
190 }
191 if (!SkColorTypeIsAlwaysOpaque(srcInfo.colorType()) &&
192 SkColorTypeIsAlwaysOpaque(dstInfo.colorType())) {
193 return false;
194 }
195 // The source has no alpha value and the dst is only alpha
196 if (SkColorTypeIsAlwaysOpaque(srcInfo.colorType()) &&
197 SkColorTypeIsAlphaOnly(dstInfo.colorType())) {
198 return false;
199 }
200 return true;
201}
202
203static bool check_write(skiatest::Reporter* reporter, SkSurface* surf, SkAlphaType surfaceAlphaType,
204 const SkBitmap& bitmap, int writeX, int writeY) {
reed@google.com7111d462014-03-25 16:20:24 +0000205 size_t canvasRowBytes;
206 const uint32_t* canvasPixels;
reed@google.com11211702014-03-25 12:00:30 +0000207
reed@google.com7111d462014-03-25 16:20:24 +0000208 // Can't use canvas->peekPixels(), as we are trying to look at GPU pixels sometimes as well.
209 // At some point this will be unsupported, as we won't allow accessBitmap() to magically call
210 // readPixels for the client.
211 SkBitmap secretDevBitmap;
Mike Reedf1942192017-07-21 14:24:29 -0400212 secretDevBitmap.allocN32Pixels(surf->width(), surf->height());
213 if (!surf->readPixels(secretDevBitmap, 0, 0)) {
Brian Salomon71d9d842016-11-03 13:42:00 -0400214 return false;
215 }
reed52d9ac62014-06-30 09:05:34 -0700216
reed@google.com7111d462014-03-25 16:20:24 +0000217 canvasRowBytes = secretDevBitmap.rowBytes();
218 canvasPixels = static_cast<const uint32_t*>(secretDevBitmap.getPixels());
219
halcanary96fcdcc2015-08-27 07:41:13 -0700220 if (nullptr == canvasPixels) {
reed@google.com7111d462014-03-25 16:20:24 +0000221 return false;
222 }
223
Mike Reedf1942192017-07-21 14:24:29 -0400224 if (surf->width() != DEV_W || surf->height() != DEV_H) {
reed@google.com7111d462014-03-25 16:20:24 +0000225 return false;
226 }
227
228 const SkImageInfo bmInfo = bitmap.info();
229
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000230 SkIRect writeRect = SkIRect::MakeXYWH(writeX, writeY, bitmap.width(), bitmap.height());
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000231 for (int cy = 0; cy < DEV_H; ++cy) {
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000232 for (int cx = 0; cx < DEV_W; ++cx) {
reed@google.com7111d462014-03-25 16:20:24 +0000233 SkPMColor canvasPixel = canvasPixels[cx];
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000234 if (writeRect.contains(cx, cy)) {
235 int bx = cx - writeX;
236 int by = cy - writeY;
bsalomonf0674512015-07-28 13:26:15 -0700237 uint32_t bmpColor8888 = get_bitmap_color(bx, by, bitmap.width(),
reed@google.com7111d462014-03-25 16:20:24 +0000238 bmInfo.colorType(), bmInfo.alphaType());
239 bool mul = (kUnpremul_SkAlphaType == bmInfo.alphaType());
240 SkPMColor bmpPMColor = convert_to_PMColor(bmInfo.colorType(), bmInfo.alphaType(),
241 bmpColor8888);
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400242 if (bmInfo.alphaType() == kOpaque_SkAlphaType ||
243 surfaceAlphaType == kOpaque_SkAlphaType) {
244 bmpPMColor |= 0xFF000000;
245 }
bsalomonf0674512015-07-28 13:26:15 -0700246 if (!check_pixel(bmpPMColor, canvasPixel, mul)) {
247 ERRORF(reporter, "Expected canvas pixel at %d, %d to be 0x%08x, got 0x%08x. "
248 "Write performed premul: %d", cx, cy, bmpPMColor, canvasPixel, mul);
bsalomon@google.com72f3dca2012-08-17 13:32:06 +0000249 return false;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000250 }
251 } else {
bsalomonf0674512015-07-28 13:26:15 -0700252 SkPMColor testColor = get_canvas_color(cx, cy);
253 if (canvasPixel != testColor) {
254 ERRORF(reporter, "Canvas pixel outside write rect at %d, %d changed."
255 " Should be 0x%08x, got 0x%08x. ", cx, cy, testColor, canvasPixel);
bsalomon@google.com72f3dca2012-08-17 13:32:06 +0000256 return false;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000257 }
258 }
259 }
260 if (cy != DEV_H -1) {
reed@google.com7111d462014-03-25 16:20:24 +0000261 const char* pad = reinterpret_cast<const char*>(canvasPixels + DEV_W);
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000262 for (size_t px = 0; px < canvasRowBytes - 4 * DEV_W; ++px) {
263 bool check;
264 REPORTER_ASSERT(reporter, check = (pad[px] == static_cast<char>(DEV_PAD)));
265 if (!check) {
bsalomon@google.com72f3dca2012-08-17 13:32:06 +0000266 return false;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000267 }
268 }
269 }
reed@google.com7111d462014-03-25 16:20:24 +0000270 canvasPixels += canvasRowBytes/4;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000271 }
272
bsalomon@google.com72f3dca2012-08-17 13:32:06 +0000273 return true;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000274}
275
commit-bot@chromium.orgfa9e5fa2014-02-13 22:00:04 +0000276#include "SkMallocPixelRef.h"
277
278// This is a tricky pattern, because we have to setConfig+rowBytes AND specify
279// a custom pixelRef (which also has to specify its rowBytes), so we have to be
280// sure that the two rowBytes match (and the infos match).
281//
bsalomonf0674512015-07-28 13:26:15 -0700282static bool alloc_row_bytes(SkBitmap* bm, const SkImageInfo& info, size_t rowBytes) {
commit-bot@chromium.orga3264e52014-05-30 13:26:10 +0000283 if (!bm->setInfo(info, rowBytes)) {
commit-bot@chromium.orgfa9e5fa2014-02-13 22:00:04 +0000284 return false;
285 }
Mike Reed086a4272017-07-18 10:53:11 -0400286 sk_sp<SkPixelRef> pr = SkMallocPixelRef::MakeAllocate(info, rowBytes);
Hal Canary1b3387b2016-12-12 13:48:12 -0500287 bm->setPixelRef(std::move(pr), 0, 0);
commit-bot@chromium.orgfa9e5fa2014-02-13 22:00:04 +0000288 return true;
289}
290
reed52d9ac62014-06-30 09:05:34 -0700291static void free_pixels(void* pixels, void* ctx) {
292 sk_free(pixels);
293}
294
reed52d9ac62014-06-30 09:05:34 -0700295static bool setup_bitmap(SkBitmap* bm, SkColorType ct, SkAlphaType at, int w, int h, int tightRB) {
reed@google.com7111d462014-03-25 16:20:24 +0000296 size_t rowBytes = tightRB ? 0 : 4 * w + 60;
297 SkImageInfo info = SkImageInfo::Make(w, h, ct, at);
bsalomonf0674512015-07-28 13:26:15 -0700298 if (!alloc_row_bytes(bm, info, rowBytes)) {
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000299 return false;
300 }
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000301 for (int y = 0; y < h; ++y) {
302 for (int x = 0; x < w; ++x) {
bsalomonf0674512015-07-28 13:26:15 -0700303 *bm->getAddr32(x, y) = get_bitmap_color(x, y, w, ct, at);
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000304 }
305 }
306 return true;
307}
308
Mike Reed4c790bd2018-02-08 14:10:40 -0500309static void call_writepixels(SkSurface* surface) {
reed4af35f32014-06-27 17:47:49 -0700310 const SkImageInfo info = SkImageInfo::MakeN32Premul(1, 1);
311 SkPMColor pixel = 0;
Mike Reed4c790bd2018-02-08 14:10:40 -0500312 surface->writePixels({info, &pixel, sizeof(SkPMColor)}, 0, 0);
reed4af35f32014-06-27 17:47:49 -0700313}
314
kkinnunen15302832015-12-01 04:35:26 -0800315DEF_TEST(WritePixelsSurfaceGenID, reporter) {
reed4af35f32014-06-27 17:47:49 -0700316 const SkImageInfo info = SkImageInfo::MakeN32Premul(100, 100);
reede8f30622016-03-23 18:59:25 -0700317 auto surface(SkSurface::MakeRaster(info));
reed4af35f32014-06-27 17:47:49 -0700318 uint32_t genID1 = surface->generationID();
Mike Reed4c790bd2018-02-08 14:10:40 -0500319 call_writepixels(surface.get());
reed4af35f32014-06-27 17:47:49 -0700320 uint32_t genID2 = surface->generationID();
321 REPORTER_ASSERT(reporter, genID1 != genID2);
322}
323
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400324static void test_write_pixels(skiatest::Reporter* reporter, SkSurface* surface,
325 const SkImageInfo& surfaceInfo) {
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000326 const SkIRect testRects[] = {
327 // entire thing
328 DEV_RECT,
329 // larger on all sides
330 SkIRect::MakeLTRB(-10, -10, DEV_W + 10, DEV_H + 10),
331 // fully contained
332 SkIRect::MakeLTRB(DEV_W / 4, DEV_H / 4, 3 * DEV_W / 4, 3 * DEV_H / 4),
333 // outside top left
334 SkIRect::MakeLTRB(-10, -10, -1, -1),
335 // touching top left corner
336 SkIRect::MakeLTRB(-10, -10, 0, 0),
337 // overlapping top left corner
338 SkIRect::MakeLTRB(-10, -10, DEV_W / 4, DEV_H / 4),
339 // overlapping top left and top right corners
340 SkIRect::MakeLTRB(-10, -10, DEV_W + 10, DEV_H / 4),
341 // touching entire top edge
342 SkIRect::MakeLTRB(-10, -10, DEV_W + 10, 0),
343 // overlapping top right corner
344 SkIRect::MakeLTRB(3 * DEV_W / 4, -10, DEV_W + 10, DEV_H / 4),
345 // contained in x, overlapping top edge
346 SkIRect::MakeLTRB(DEV_W / 4, -10, 3 * DEV_W / 4, DEV_H / 4),
347 // outside top right corner
348 SkIRect::MakeLTRB(DEV_W + 1, -10, DEV_W + 10, -1),
349 // touching top right corner
350 SkIRect::MakeLTRB(DEV_W, -10, DEV_W + 10, 0),
351 // overlapping top left and bottom left corners
352 SkIRect::MakeLTRB(-10, -10, DEV_W / 4, DEV_H + 10),
353 // touching entire left edge
354 SkIRect::MakeLTRB(-10, -10, 0, DEV_H + 10),
355 // overlapping bottom left corner
356 SkIRect::MakeLTRB(-10, 3 * DEV_H / 4, DEV_W / 4, DEV_H + 10),
357 // contained in y, overlapping left edge
358 SkIRect::MakeLTRB(-10, DEV_H / 4, DEV_W / 4, 3 * DEV_H / 4),
359 // outside bottom left corner
360 SkIRect::MakeLTRB(-10, DEV_H + 1, -1, DEV_H + 10),
361 // touching bottom left corner
362 SkIRect::MakeLTRB(-10, DEV_H, 0, DEV_H + 10),
363 // overlapping bottom left and bottom right corners
364 SkIRect::MakeLTRB(-10, 3 * DEV_H / 4, DEV_W + 10, DEV_H + 10),
365 // touching entire left edge
366 SkIRect::MakeLTRB(0, DEV_H, DEV_W, DEV_H + 10),
367 // overlapping bottom right corner
368 SkIRect::MakeLTRB(3 * DEV_W / 4, 3 * DEV_H / 4, DEV_W + 10, DEV_H + 10),
369 // overlapping top right and bottom right corners
370 SkIRect::MakeLTRB(3 * DEV_W / 4, -10, DEV_W + 10, DEV_H + 10),
371 };
372
Mike Reedf1942192017-07-21 14:24:29 -0400373 SkCanvas* canvas = surface->getCanvas();
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000374
kkinnunen15302832015-12-01 04:35:26 -0800375 static const struct {
376 SkColorType fColorType;
377 SkAlphaType fAlphaType;
378 } gSrcConfigs[] = {
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400379 {kRGBA_8888_SkColorType, kPremul_SkAlphaType},
380 {kRGBA_8888_SkColorType, kUnpremul_SkAlphaType},
381 {kRGB_888x_SkColorType, kOpaque_SkAlphaType},
382 {kBGRA_8888_SkColorType, kPremul_SkAlphaType},
383 {kBGRA_8888_SkColorType, kUnpremul_SkAlphaType},
kkinnunen15302832015-12-01 04:35:26 -0800384 };
385 for (size_t r = 0; r < SK_ARRAY_COUNT(testRects); ++r) {
386 const SkIRect& rect = testRects[r];
387 for (int tightBmp = 0; tightBmp < 2; ++tightBmp) {
388 for (size_t c = 0; c < SK_ARRAY_COUNT(gSrcConfigs); ++c) {
389 const SkColorType ct = gSrcConfigs[c].fColorType;
390 const SkAlphaType at = gSrcConfigs[c].fAlphaType;
bsalomon@google.com405d0f42012-08-29 21:26:13 +0000391
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400392 bool isGPU = SkToBool(surface->getCanvas()->getGrContext());
Mike Reed4c790bd2018-02-08 14:10:40 -0500393 fill_surface(surface);
kkinnunen15302832015-12-01 04:35:26 -0800394 SkBitmap bmp;
395 REPORTER_ASSERT(reporter, setup_bitmap(&bmp, ct, at, rect.width(),
396 rect.height(), SkToBool(tightBmp)));
397 uint32_t idBefore = surface->generationID();
reed@google.com7111d462014-03-25 16:20:24 +0000398
kkinnunen15302832015-12-01 04:35:26 -0800399 // sk_tool_utils::write_pixels(&canvas, bmp, rect.fLeft, rect.fTop, ct, at);
Mike Reed4c790bd2018-02-08 14:10:40 -0500400 surface->writePixels(bmp, rect.fLeft, rect.fTop);
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000401
kkinnunen15302832015-12-01 04:35:26 -0800402 uint32_t idAfter = surface->generationID();
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400403 REPORTER_ASSERT(reporter, check_write(reporter, surface, surfaceInfo.alphaType(),
404 bmp, rect.fLeft, rect.fTop));
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000405
kkinnunen15302832015-12-01 04:35:26 -0800406 // we should change the genID iff pixels were actually written.
Mike Reedf1942192017-07-21 14:24:29 -0400407 SkIRect canvasRect = SkIRect::MakeSize(canvas->getBaseLayerSize());
kkinnunen15302832015-12-01 04:35:26 -0800408 SkIRect writeRect = SkIRect::MakeXYWH(rect.fLeft, rect.fTop,
409 bmp.width(), bmp.height());
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400410 bool expectSuccess = SkIRect::Intersects(canvasRect, writeRect) &&
411 write_should_succeed(surfaceInfo, bmp.info(), isGPU);
412 REPORTER_ASSERT(reporter, expectSuccess == (idBefore != idAfter));
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000413 }
414 }
415 }
416}
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400417
kkinnunen15302832015-12-01 04:35:26 -0800418DEF_TEST(WritePixels, reporter) {
419 const SkImageInfo info = SkImageInfo::MakeN32Premul(DEV_W, DEV_H);
420 for (auto& tightRowBytes : { true, false }) {
421 const size_t rowBytes = tightRowBytes ? info.minRowBytes() : 4 * DEV_W + 100;
Mike Reedf0ffb892017-10-03 14:47:21 -0400422 const size_t size = info.computeByteSize(rowBytes);
kkinnunen15302832015-12-01 04:35:26 -0800423 void* pixels = sk_malloc_throw(size);
424 // if rowBytes isn't tight then set the padding to a known value
425 if (!tightRowBytes) {
426 memset(pixels, DEV_PAD, size);
427 }
reede8f30622016-03-23 18:59:25 -0700428 auto surface(SkSurface::MakeRasterDirectReleaseProc(info, pixels, rowBytes,
429 free_pixels, nullptr));
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400430 test_write_pixels(reporter, surface.get(), info);
kkinnunen15302832015-12-01 04:35:26 -0800431 }
432}
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400433
Brian Salomon3d86a192018-02-27 16:46:11 -0500434static void test_write_pixels(skiatest::Reporter* reporter, GrContext* context, int sampleCnt) {
robertphillips7e922762016-07-26 11:38:17 -0700435 const SkImageInfo ii = SkImageInfo::MakeN32Premul(DEV_W, DEV_H);
Brian Salomon3d86a192018-02-27 16:46:11 -0500436 for (auto& origin : { kTopLeft_GrSurfaceOrigin, kBottomLeft_GrSurfaceOrigin }) {
437 sk_sp<SkSurface> surface(SkSurface::MakeRenderTarget(context,
438 SkBudgeted::kNo, ii, sampleCnt,
439 origin, nullptr));
440 if (surface) {
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400441 test_write_pixels(reporter, surface.get(), ii);
Brian Salomon3d86a192018-02-27 16:46:11 -0500442 }
Brian Salomon3d86a192018-02-27 16:46:11 -0500443 }
444}
445
446DEF_GPUTEST_FOR_RENDERING_CONTEXTS(WritePixels_Gpu, reporter, ctxInfo) {
447 test_write_pixels(reporter, ctxInfo.grContext(), 1);
448}
449
450DEF_GPUTEST_FOR_RENDERING_CONTEXTS(WritePixelsMSAA_Gpu, reporter, ctxInfo) {
451 test_write_pixels(reporter, ctxInfo.grContext(), 1);
452}
453
454static void test_write_pixels_non_texture(skiatest::Reporter* reporter, GrContext* context,
455 int sampleCnt) {
456 GrGpu* gpu = context->contextPriv().getGpu();
robertphillips7e922762016-07-26 11:38:17 -0700457
kkinnunen15302832015-12-01 04:35:26 -0800458 for (auto& origin : { kTopLeft_GrSurfaceOrigin, kBottomLeft_GrSurfaceOrigin }) {
Brian Salomon3d86a192018-02-27 16:46:11 -0500459 GrBackendTexture backendTex = gpu->createTestingOnlyBackendTexture(
Robert Phillips646f6372018-09-25 09:31:10 -0400460 nullptr, DEV_W, DEV_H, GrColorType::kRGBA_8888, true, GrMipMapped::kNo);
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400461 if (!backendTex.isValid()) {
462 continue;
463 }
Brian Salomon3d86a192018-02-27 16:46:11 -0500464 SkColorType colorType = kN32_SkColorType;
465 sk_sp<SkSurface> surface(SkSurface::MakeFromBackendTextureAsRenderTarget(
466 context, backendTex, origin, sampleCnt, colorType, nullptr, nullptr));
467 if (surface) {
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400468 auto ii = SkImageInfo::MakeN32Premul(DEV_W, DEV_H);
469 test_write_pixels(reporter, surface.get(), ii);
Brian Osman33910292017-04-18 14:38:53 -0400470 }
Brian Salomon26102cb2018-03-09 09:33:19 -0500471 gpu->deleteTestingOnlyBackendTexture(backendTex);
Brian Osman33910292017-04-18 14:38:53 -0400472 }
473}
474
475DEF_GPUTEST_FOR_RENDERING_CONTEXTS(WritePixelsNonTexture_Gpu, reporter, ctxInfo) {
Brian Salomon3d86a192018-02-27 16:46:11 -0500476 test_write_pixels_non_texture(reporter, ctxInfo.grContext(), 1);
477}
Brian Osman33910292017-04-18 14:38:53 -0400478
Brian Salomon3d86a192018-02-27 16:46:11 -0500479DEF_GPUTEST_FOR_RENDERING_CONTEXTS(WritePixelsNonTextureMSAA_Gpu, reporter, ctxInfo) {
480 test_write_pixels_non_texture(reporter, ctxInfo.grContext(), 4);
kkinnunen15302832015-12-01 04:35:26 -0800481}
Robert Phillips7bbbf622017-10-17 07:36:59 -0400482
483static sk_sp<SkSurface> create_surf(GrContext* context, int width, int height) {
484 const SkImageInfo ii = SkImageInfo::Make(width, height,
485 kRGBA_8888_SkColorType, kPremul_SkAlphaType);
486
487 sk_sp<SkSurface> surf = SkSurface::MakeRenderTarget(context, SkBudgeted::kYes, ii);
488 surf->flush();
489 return surf;
490}
491
492static sk_sp<SkImage> upload(const sk_sp<SkSurface>& surf, SkColor color) {
493 const SkImageInfo smII = SkImageInfo::Make(16, 16, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
494 SkBitmap bm;
495 bm.allocPixels(smII);
496 bm.eraseColor(color);
497
Mike Reed4c790bd2018-02-08 14:10:40 -0500498 surf->writePixels(bm, 0, 0);
Robert Phillips7bbbf622017-10-17 07:36:59 -0400499
500 return surf->makeImageSnapshot();
501}
502
503// This is tests whether the first writePixels is completed before the
504// second writePixels takes effect (i.e., that writePixels correctly flushes
505// in between uses of the shared backing resource).
506DEF_GPUTEST_FOR_RENDERING_CONTEXTS(WritePixelsPendingIO, reporter, ctxInfo) {
507 GrContext* context = ctxInfo.grContext();
Robert Phillips1afd4cd2018-01-08 13:40:32 -0500508 GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider();
Robert Phillips7bbbf622017-10-17 07:36:59 -0400509
510 static const int kFullSize = 62;
511 static const int kHalfSize = 31;
512
513 static const uint32_t kLeftColor = 0xFF222222;
514 static const uint32_t kRightColor = 0xFFAAAAAA;
515
516 const SkImageInfo fullII = SkImageInfo::Make(kFullSize, kFullSize,
517 kRGBA_8888_SkColorType, kPremul_SkAlphaType);
518 const SkImageInfo halfII = SkImageInfo::Make(kHalfSize, kFullSize,
519 kRGBA_8888_SkColorType, kPremul_SkAlphaType);
520
521 sk_sp<SkSurface> dest = SkSurface::MakeRenderTarget(context, SkBudgeted::kYes, fullII);
522
523 {
524 // Seed the resource cached with a scratch texture that will be
525 // reused by writeSurfacePixels
526 GrSurfaceDesc desc;
527 desc.fFlags = kNone_GrSurfaceFlags;
528 desc.fWidth = 32;
529 desc.fHeight = 64;
530 desc.fConfig = kRGBA_8888_GrPixelConfig;
531
Greg Daniel4065d452018-11-16 15:43:41 -0500532 const GrBackendFormat format =
533 context->contextPriv().caps()->getBackendFormatFromColorType(kRGBA_8888_SkColorType);
534
Brian Salomon2a4f9832018-03-03 22:43:43 -0500535 sk_sp<GrTextureProxy> temp = proxyProvider->createProxy(
Greg Daniel4065d452018-11-16 15:43:41 -0500536 format, desc, kTopLeft_GrSurfaceOrigin, SkBackingFit::kApprox, SkBudgeted::kYes);
Robert Phillips6be756b2018-01-16 15:07:54 -0500537 temp->instantiate(context->contextPriv().resourceProvider());
Robert Phillips7bbbf622017-10-17 07:36:59 -0400538 }
539
540 // Create the surfaces and flush them to ensure there is no lingering pendingIO
541 sk_sp<SkSurface> leftSurf = create_surf(context, kHalfSize, kFullSize);
542 sk_sp<SkSurface> rightSurf = create_surf(context, kHalfSize, kFullSize);
543
544 sk_sp<SkImage> leftImg = upload(std::move(leftSurf), kLeftColor);
545 dest->getCanvas()->drawImage(std::move(leftImg), 0, 0);
546
547 sk_sp<SkImage> rightImg = upload(std::move(rightSurf), kRightColor);
548 dest->getCanvas()->drawImage(std::move(rightImg), kHalfSize, 0);
549
550 SkBitmap bm;
551 bm.allocPixels(fullII);
552 SkAssertResult(dest->readPixels(bm, 0, 0));
553
554 bool isCorrect = true;
555 for (int y = 0; isCorrect && y < 16; ++y) {
556 const uint32_t* sl = bm.getAddr32(0, y);
557
558 for (int x = 0; x < 16; ++x) {
559 if (kLeftColor != sl[x]) {
560 isCorrect = false;
561 break;
562 }
563 }
564 for (int x = kHalfSize; x < kHalfSize+16; ++x) {
565 if (kRightColor != sl[x]) {
566 isCorrect = false;
567 break;
568 }
569 }
570 }
571
572 REPORTER_ASSERT(reporter, isCorrect);
573}