blob: e876c8ff05527c845e050143421f7be75fcf2538 [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"
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00009#include "SkColorPriv.h"
reed@google.com4b163ed2012-08-07 21:35:13 +000010#include "SkMathPriv.h"
reed4af35f32014-06-27 17:47:49 -070011#include "SkSurface.h"
tfarina@chromium.org4ee16bf2014-01-10 22:08:27 +000012#include "Test.h"
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +000013#include "sk_tool_utils.h"
tfarina@chromium.org4ee16bf2014-01-10 22:08:27 +000014
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000015#if SK_SUPPORT_GPU
Brian Salomond17f6582017-07-19 18:28:58 -040016#include "GrBackendSurface.h"
kkinnunen15302832015-12-01 04:35:26 -080017#include "GrContext.h"
Brian Osman33910292017-04-18 14:38:53 -040018#include "GrGpu.h"
Brian Salomond17f6582017-07-19 18:28:58 -040019#include "GrTest.h"
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000020#endif
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);
rmistry@google.comd6176b02012-08-23 18:14:13 +000026static const SkRect DEV_RECT_S = SkRect::MakeWH(DEV_W * SK_Scalar1,
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000027 DEV_H * SK_Scalar1);
28static const U8CPU DEV_PAD = 0xee;
29
bsalomonf0674512015-07-28 13:26:15 -070030static SkPMColor get_canvas_color(int x, int y) {
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000031 SkASSERT(x >= 0 && x < DEV_W);
32 SkASSERT(y >= 0 && y < DEV_H);
33
34 U8CPU r = x;
35 U8CPU g = y;
36 U8CPU b = 0xc;
37
bsalomon@google.com31648eb2011-11-23 15:01:08 +000038 U8CPU a = 0x0;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000039 switch ((x+y) % 5) {
40 case 0:
41 a = 0xff;
42 break;
43 case 1:
44 a = 0x80;
45 break;
46 case 2:
47 a = 0xCC;
48 break;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000049 case 3:
50 a = 0x00;
51 break;
bsalomon@google.com31648eb2011-11-23 15:01:08 +000052 case 4:
53 a = 0x01;
54 break;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000055 }
56 return SkPremultiplyARGBInline(a, r, g, b);
57}
58
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000059// assumes any premu/.unpremul has been applied
bsalomonf0674512015-07-28 13:26:15 -070060static uint32_t pack_color_type(SkColorType ct, U8CPU a, U8CPU r, U8CPU g, U8CPU b) {
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000061 uint32_t r32;
62 uint8_t* result = reinterpret_cast<uint8_t*>(&r32);
reed@google.com7111d462014-03-25 16:20:24 +000063 switch (ct) {
64 case kBGRA_8888_SkColorType:
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000065 result[0] = b;
66 result[1] = g;
67 result[2] = r;
68 result[3] = a;
69 break;
reed@google.com7111d462014-03-25 16:20:24 +000070 case kRGBA_8888_SkColorType:
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000071 result[0] = r;
72 result[1] = g;
73 result[2] = b;
74 result[3] = a;
75 break;
76 default:
77 SkASSERT(0);
78 return 0;
79 }
80 return r32;
81}
82
bsalomonf0674512015-07-28 13:26:15 -070083static uint32_t get_bitmap_color(int x, int y, int w, SkColorType ct, SkAlphaType at) {
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000084 int n = y * w + x;
85 U8CPU b = n & 0xff;
86 U8CPU g = (n >> 8) & 0xff;
87 U8CPU r = (n >> 16) & 0xff;
bsalomon@google.com31648eb2011-11-23 15:01:08 +000088 U8CPU a = 0;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000089 switch ((x+y) % 5) {
90 case 4:
91 a = 0xff;
92 break;
93 case 3:
94 a = 0x80;
95 break;
96 case 2:
97 a = 0xCC;
98 break;
99 case 1:
100 a = 0x01;
101 break;
102 case 0:
103 a = 0x00;
104 break;
105 }
reed@google.com7111d462014-03-25 16:20:24 +0000106 if (kPremul_SkAlphaType == at) {
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000107 r = SkMulDiv255Ceiling(r, a);
108 g = SkMulDiv255Ceiling(g, a);
109 b = SkMulDiv255Ceiling(b, a);
110 }
bsalomonf0674512015-07-28 13:26:15 -0700111 return pack_color_type(ct, a, r, g , b);
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000112}
113
bsalomonf0674512015-07-28 13:26:15 -0700114static void fill_canvas(SkCanvas* canvas) {
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000115 SkBitmap bmp;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000116 if (bmp.isNull()) {
reed84825042014-09-02 12:50:45 -0700117 bmp.allocN32Pixels(DEV_W, DEV_H);
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000118 for (int y = 0; y < DEV_H; ++y) {
119 for (int x = 0; x < DEV_W; ++x) {
bsalomonf0674512015-07-28 13:26:15 -0700120 *bmp.getAddr32(x, y) = get_canvas_color(x, y);
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000121 }
122 }
123 }
124 canvas->save();
125 canvas->setMatrix(SkMatrix::I());
Mike Reedc1f77742016-12-09 09:00:50 -0500126 canvas->clipRect(DEV_RECT_S, kReplace_SkClipOp);
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000127 SkPaint paint;
reed374772b2016-10-05 17:33:02 -0700128 paint.setBlendMode(SkBlendMode::kSrc);
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000129 canvas->drawBitmap(bmp, 0, 0, &paint);
130 canvas->restore();
131}
132
reed@google.com7111d462014-03-25 16:20:24 +0000133/**
134 * Lucky for us, alpha is always in the same spot (SK_A32_SHIFT), for both RGBA and BGRA.
135 * Thus this routine doesn't need to know the exact colortype
136 */
137static uint32_t premul(uint32_t color) {
138 unsigned a = SkGetPackedA32(color);
139 // these next three are not necessarily r,g,b in that order, but they are r,g,b in some order.
140 unsigned c0 = SkGetPackedR32(color);
141 unsigned c1 = SkGetPackedG32(color);
142 unsigned c2 = SkGetPackedB32(color);
143 c0 = SkMulDiv255Ceiling(c0, a);
144 c1 = SkMulDiv255Ceiling(c1, a);
145 c2 = SkMulDiv255Ceiling(c2, a);
146 return SkPackARGB32NoCheck(a, c0, c1, c2);
147}
148
149static SkPMColor convert_to_PMColor(SkColorType ct, SkAlphaType at, uint32_t color) {
150 if (kUnpremul_SkAlphaType == at) {
151 color = premul(color);
152 }
153 switch (ct) {
154 case kRGBA_8888_SkColorType:
155 color = SkSwizzle_RGBA_to_PMColor(color);
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000156 break;
reed@google.com7111d462014-03-25 16:20:24 +0000157 case kBGRA_8888_SkColorType:
158 color = SkSwizzle_BGRA_to_PMColor(color);
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000159 break;
160 default:
reed@google.com7111d462014-03-25 16:20:24 +0000161 SkASSERT(0);
162 break;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000163 }
reed@google.com7111d462014-03-25 16:20:24 +0000164 return color;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000165}
166
bsalomonf0674512015-07-28 13:26:15 -0700167static bool check_pixel(SkPMColor a, SkPMColor b, bool didPremulConversion) {
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000168 if (!didPremulConversion) {
169 return a == b;
170 }
171 int32_t aA = static_cast<int32_t>(SkGetPackedA32(a));
172 int32_t aR = static_cast<int32_t>(SkGetPackedR32(a));
173 int32_t aG = static_cast<int32_t>(SkGetPackedG32(a));
174 int32_t aB = SkGetPackedB32(a);
175
176 int32_t bA = static_cast<int32_t>(SkGetPackedA32(b));
177 int32_t bR = static_cast<int32_t>(SkGetPackedR32(b));
178 int32_t bG = static_cast<int32_t>(SkGetPackedG32(b));
179 int32_t bB = static_cast<int32_t>(SkGetPackedB32(b));
180
181 return aA == bA &&
182 SkAbs32(aR - bR) <= 1 &&
183 SkAbs32(aG - bG) <= 1 &&
184 SkAbs32(aB - bB) <= 1;
185}
186
reed52d9ac62014-06-30 09:05:34 -0700187static bool check_write(skiatest::Reporter* reporter, SkCanvas* canvas, const SkBitmap& bitmap,
reed@google.com7111d462014-03-25 16:20:24 +0000188 int writeX, int writeY) {
reed52d9ac62014-06-30 09:05:34 -0700189 const SkImageInfo canvasInfo = canvas->imageInfo();
reed@google.com7111d462014-03-25 16:20:24 +0000190 size_t canvasRowBytes;
191 const uint32_t* canvasPixels;
reed@google.com11211702014-03-25 12:00:30 +0000192
reed@google.com7111d462014-03-25 16:20:24 +0000193 // Can't use canvas->peekPixels(), as we are trying to look at GPU pixels sometimes as well.
194 // At some point this will be unsupported, as we won't allow accessBitmap() to magically call
195 // readPixels for the client.
196 SkBitmap secretDevBitmap;
Mike Reed12e946b2017-04-17 10:53:29 -0400197 secretDevBitmap.allocN32Pixels(canvasInfo.width(), canvasInfo.height());
198 if (!canvas->readPixels(secretDevBitmap, 0, 0)) {
Brian Salomon71d9d842016-11-03 13:42:00 -0400199 return false;
200 }
reed52d9ac62014-06-30 09:05:34 -0700201
reed@google.com7111d462014-03-25 16:20:24 +0000202 canvasRowBytes = secretDevBitmap.rowBytes();
203 canvasPixels = static_cast<const uint32_t*>(secretDevBitmap.getPixels());
204
halcanary96fcdcc2015-08-27 07:41:13 -0700205 if (nullptr == canvasPixels) {
reed@google.com7111d462014-03-25 16:20:24 +0000206 return false;
207 }
208
209 if (canvasInfo.width() != DEV_W ||
210 canvasInfo.height() != DEV_H ||
commit-bot@chromium.org28fcae22014-04-11 17:15:40 +0000211 canvasInfo.colorType() != kN32_SkColorType) {
reed@google.com7111d462014-03-25 16:20:24 +0000212 return false;
213 }
214
215 const SkImageInfo bmInfo = bitmap.info();
216
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000217 SkIRect writeRect = SkIRect::MakeXYWH(writeX, writeY, bitmap.width(), bitmap.height());
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000218 for (int cy = 0; cy < DEV_H; ++cy) {
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000219 for (int cx = 0; cx < DEV_W; ++cx) {
reed@google.com7111d462014-03-25 16:20:24 +0000220 SkPMColor canvasPixel = canvasPixels[cx];
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000221 if (writeRect.contains(cx, cy)) {
222 int bx = cx - writeX;
223 int by = cy - writeY;
bsalomonf0674512015-07-28 13:26:15 -0700224 uint32_t bmpColor8888 = get_bitmap_color(bx, by, bitmap.width(),
reed@google.com7111d462014-03-25 16:20:24 +0000225 bmInfo.colorType(), bmInfo.alphaType());
226 bool mul = (kUnpremul_SkAlphaType == bmInfo.alphaType());
227 SkPMColor bmpPMColor = convert_to_PMColor(bmInfo.colorType(), bmInfo.alphaType(),
228 bmpColor8888);
bsalomonf0674512015-07-28 13:26:15 -0700229 if (!check_pixel(bmpPMColor, canvasPixel, mul)) {
230 ERRORF(reporter, "Expected canvas pixel at %d, %d to be 0x%08x, got 0x%08x. "
231 "Write performed premul: %d", cx, cy, bmpPMColor, canvasPixel, mul);
bsalomon@google.com72f3dca2012-08-17 13:32:06 +0000232 return false;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000233 }
234 } else {
bsalomonf0674512015-07-28 13:26:15 -0700235 SkPMColor testColor = get_canvas_color(cx, cy);
236 if (canvasPixel != testColor) {
237 ERRORF(reporter, "Canvas pixel outside write rect at %d, %d changed."
238 " Should be 0x%08x, got 0x%08x. ", cx, cy, testColor, canvasPixel);
bsalomon@google.com72f3dca2012-08-17 13:32:06 +0000239 return false;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000240 }
241 }
242 }
243 if (cy != DEV_H -1) {
reed@google.com7111d462014-03-25 16:20:24 +0000244 const char* pad = reinterpret_cast<const char*>(canvasPixels + DEV_W);
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000245 for (size_t px = 0; px < canvasRowBytes - 4 * DEV_W; ++px) {
246 bool check;
247 REPORTER_ASSERT(reporter, check = (pad[px] == static_cast<char>(DEV_PAD)));
248 if (!check) {
bsalomon@google.com72f3dca2012-08-17 13:32:06 +0000249 return false;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000250 }
251 }
252 }
reed@google.com7111d462014-03-25 16:20:24 +0000253 canvasPixels += canvasRowBytes/4;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000254 }
255
bsalomon@google.com72f3dca2012-08-17 13:32:06 +0000256 return true;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000257}
258
commit-bot@chromium.orgfa9e5fa2014-02-13 22:00:04 +0000259#include "SkMallocPixelRef.h"
260
261// This is a tricky pattern, because we have to setConfig+rowBytes AND specify
262// a custom pixelRef (which also has to specify its rowBytes), so we have to be
263// sure that the two rowBytes match (and the infos match).
264//
bsalomonf0674512015-07-28 13:26:15 -0700265static bool alloc_row_bytes(SkBitmap* bm, const SkImageInfo& info, size_t rowBytes) {
commit-bot@chromium.orga3264e52014-05-30 13:26:10 +0000266 if (!bm->setInfo(info, rowBytes)) {
commit-bot@chromium.orgfa9e5fa2014-02-13 22:00:04 +0000267 return false;
268 }
Mike Reed086a4272017-07-18 10:53:11 -0400269 sk_sp<SkPixelRef> pr = SkMallocPixelRef::MakeAllocate(info, rowBytes);
Hal Canary1b3387b2016-12-12 13:48:12 -0500270 bm->setPixelRef(std::move(pr), 0, 0);
commit-bot@chromium.orgfa9e5fa2014-02-13 22:00:04 +0000271 return true;
272}
273
reed52d9ac62014-06-30 09:05:34 -0700274static void free_pixels(void* pixels, void* ctx) {
275 sk_free(pixels);
276}
277
reed52d9ac62014-06-30 09:05:34 -0700278static bool setup_bitmap(SkBitmap* bm, SkColorType ct, SkAlphaType at, int w, int h, int tightRB) {
reed@google.com7111d462014-03-25 16:20:24 +0000279 size_t rowBytes = tightRB ? 0 : 4 * w + 60;
280 SkImageInfo info = SkImageInfo::Make(w, h, ct, at);
bsalomonf0674512015-07-28 13:26:15 -0700281 if (!alloc_row_bytes(bm, info, rowBytes)) {
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000282 return false;
283 }
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000284 for (int y = 0; y < h; ++y) {
285 for (int x = 0; x < w; ++x) {
bsalomonf0674512015-07-28 13:26:15 -0700286 *bm->getAddr32(x, y) = get_bitmap_color(x, y, w, ct, at);
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000287 }
288 }
289 return true;
290}
291
reed4af35f32014-06-27 17:47:49 -0700292static void call_writepixels(SkCanvas* canvas) {
293 const SkImageInfo info = SkImageInfo::MakeN32Premul(1, 1);
294 SkPMColor pixel = 0;
295 canvas->writePixels(info, &pixel, sizeof(SkPMColor), 0, 0);
296}
297
kkinnunen15302832015-12-01 04:35:26 -0800298DEF_TEST(WritePixelsSurfaceGenID, reporter) {
reed4af35f32014-06-27 17:47:49 -0700299 const SkImageInfo info = SkImageInfo::MakeN32Premul(100, 100);
reede8f30622016-03-23 18:59:25 -0700300 auto surface(SkSurface::MakeRaster(info));
reed4af35f32014-06-27 17:47:49 -0700301 uint32_t genID1 = surface->generationID();
302 call_writepixels(surface->getCanvas());
303 uint32_t genID2 = surface->generationID();
304 REPORTER_ASSERT(reporter, genID1 != genID2);
305}
306
kkinnunen15302832015-12-01 04:35:26 -0800307static void test_write_pixels(skiatest::Reporter* reporter, SkSurface* surface) {
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000308 const SkIRect testRects[] = {
309 // entire thing
310 DEV_RECT,
311 // larger on all sides
312 SkIRect::MakeLTRB(-10, -10, DEV_W + 10, DEV_H + 10),
313 // fully contained
314 SkIRect::MakeLTRB(DEV_W / 4, DEV_H / 4, 3 * DEV_W / 4, 3 * DEV_H / 4),
315 // outside top left
316 SkIRect::MakeLTRB(-10, -10, -1, -1),
317 // touching top left corner
318 SkIRect::MakeLTRB(-10, -10, 0, 0),
319 // overlapping top left corner
320 SkIRect::MakeLTRB(-10, -10, DEV_W / 4, DEV_H / 4),
321 // overlapping top left and top right corners
322 SkIRect::MakeLTRB(-10, -10, DEV_W + 10, DEV_H / 4),
323 // touching entire top edge
324 SkIRect::MakeLTRB(-10, -10, DEV_W + 10, 0),
325 // overlapping top right corner
326 SkIRect::MakeLTRB(3 * DEV_W / 4, -10, DEV_W + 10, DEV_H / 4),
327 // contained in x, overlapping top edge
328 SkIRect::MakeLTRB(DEV_W / 4, -10, 3 * DEV_W / 4, DEV_H / 4),
329 // outside top right corner
330 SkIRect::MakeLTRB(DEV_W + 1, -10, DEV_W + 10, -1),
331 // touching top right corner
332 SkIRect::MakeLTRB(DEV_W, -10, DEV_W + 10, 0),
333 // overlapping top left and bottom left corners
334 SkIRect::MakeLTRB(-10, -10, DEV_W / 4, DEV_H + 10),
335 // touching entire left edge
336 SkIRect::MakeLTRB(-10, -10, 0, DEV_H + 10),
337 // overlapping bottom left corner
338 SkIRect::MakeLTRB(-10, 3 * DEV_H / 4, DEV_W / 4, DEV_H + 10),
339 // contained in y, overlapping left edge
340 SkIRect::MakeLTRB(-10, DEV_H / 4, DEV_W / 4, 3 * DEV_H / 4),
341 // outside bottom left corner
342 SkIRect::MakeLTRB(-10, DEV_H + 1, -1, DEV_H + 10),
343 // touching bottom left corner
344 SkIRect::MakeLTRB(-10, DEV_H, 0, DEV_H + 10),
345 // overlapping bottom left and bottom right corners
346 SkIRect::MakeLTRB(-10, 3 * DEV_H / 4, DEV_W + 10, DEV_H + 10),
347 // touching entire left edge
348 SkIRect::MakeLTRB(0, DEV_H, DEV_W, DEV_H + 10),
349 // overlapping bottom right corner
350 SkIRect::MakeLTRB(3 * DEV_W / 4, 3 * DEV_H / 4, DEV_W + 10, DEV_H + 10),
351 // overlapping top right and bottom right corners
352 SkIRect::MakeLTRB(3 * DEV_W / 4, -10, DEV_W + 10, DEV_H + 10),
353 };
354
kkinnunen15302832015-12-01 04:35:26 -0800355 SkCanvas& canvas = *surface->getCanvas();
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000356
kkinnunen15302832015-12-01 04:35:26 -0800357 static const struct {
358 SkColorType fColorType;
359 SkAlphaType fAlphaType;
360 } gSrcConfigs[] = {
361 { kRGBA_8888_SkColorType, kPremul_SkAlphaType },
362 { kRGBA_8888_SkColorType, kUnpremul_SkAlphaType },
363 { kBGRA_8888_SkColorType, kPremul_SkAlphaType },
364 { kBGRA_8888_SkColorType, kUnpremul_SkAlphaType },
365 };
366 for (size_t r = 0; r < SK_ARRAY_COUNT(testRects); ++r) {
367 const SkIRect& rect = testRects[r];
368 for (int tightBmp = 0; tightBmp < 2; ++tightBmp) {
369 for (size_t c = 0; c < SK_ARRAY_COUNT(gSrcConfigs); ++c) {
370 const SkColorType ct = gSrcConfigs[c].fColorType;
371 const SkAlphaType at = gSrcConfigs[c].fAlphaType;
bsalomon@google.com405d0f42012-08-29 21:26:13 +0000372
kkinnunen15302832015-12-01 04:35:26 -0800373 fill_canvas(&canvas);
374 SkBitmap bmp;
375 REPORTER_ASSERT(reporter, setup_bitmap(&bmp, ct, at, rect.width(),
376 rect.height(), SkToBool(tightBmp)));
377 uint32_t idBefore = surface->generationID();
reed@google.com7111d462014-03-25 16:20:24 +0000378
kkinnunen15302832015-12-01 04:35:26 -0800379 // sk_tool_utils::write_pixels(&canvas, bmp, rect.fLeft, rect.fTop, ct, at);
380 canvas.writePixels(bmp, rect.fLeft, rect.fTop);
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000381
kkinnunen15302832015-12-01 04:35:26 -0800382 uint32_t idAfter = surface->generationID();
383 REPORTER_ASSERT(reporter, check_write(reporter, &canvas, bmp,
384 rect.fLeft, rect.fTop));
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +0000385
kkinnunen15302832015-12-01 04:35:26 -0800386 // we should change the genID iff pixels were actually written.
Mike Reed3661bc92017-02-22 13:21:42 -0500387 SkIRect canvasRect = SkIRect::MakeSize(canvas.getBaseLayerSize());
kkinnunen15302832015-12-01 04:35:26 -0800388 SkIRect writeRect = SkIRect::MakeXYWH(rect.fLeft, rect.fTop,
389 bmp.width(), bmp.height());
390 bool intersects = SkIRect::Intersects(canvasRect, writeRect) ;
391 REPORTER_ASSERT(reporter, intersects == (idBefore != idAfter));
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000392 }
393 }
394 }
395}
kkinnunen15302832015-12-01 04:35:26 -0800396DEF_TEST(WritePixels, reporter) {
397 const SkImageInfo info = SkImageInfo::MakeN32Premul(DEV_W, DEV_H);
398 for (auto& tightRowBytes : { true, false }) {
399 const size_t rowBytes = tightRowBytes ? info.minRowBytes() : 4 * DEV_W + 100;
400 const size_t size = info.getSafeSize(rowBytes);
401 void* pixels = sk_malloc_throw(size);
402 // if rowBytes isn't tight then set the padding to a known value
403 if (!tightRowBytes) {
404 memset(pixels, DEV_PAD, size);
405 }
reede8f30622016-03-23 18:59:25 -0700406 auto surface(SkSurface::MakeRasterDirectReleaseProc(info, pixels, rowBytes,
407 free_pixels, nullptr));
408 test_write_pixels(reporter, surface.get());
kkinnunen15302832015-12-01 04:35:26 -0800409 }
410}
411#if SK_SUPPORT_GPU
egdaniel4583ec52016-06-27 12:57:00 -0700412DEF_GPUTEST_FOR_RENDERING_CONTEXTS(WritePixels_Gpu, reporter, ctxInfo) {
robertphillips7e922762016-07-26 11:38:17 -0700413 const SkImageInfo ii = SkImageInfo::MakeN32Premul(DEV_W, DEV_H);
414
kkinnunen15302832015-12-01 04:35:26 -0800415 for (auto& origin : { kTopLeft_GrSurfaceOrigin, kBottomLeft_GrSurfaceOrigin }) {
Brian Osman33910292017-04-18 14:38:53 -0400416 for (int sampleCnt : {0, 4}) {
417 sk_sp<SkSurface> surface(SkSurface::MakeRenderTarget(ctxInfo.grContext(),
418 SkBudgeted::kNo, ii, sampleCnt,
419 origin, nullptr));
420 if (!surface && sampleCnt > 0) {
421 // Some platforms don't support MSAA
422 continue;
423 }
424 test_write_pixels(reporter, surface.get());
425 }
426 }
427}
428
429DEF_GPUTEST_FOR_RENDERING_CONTEXTS(WritePixelsNonTexture_Gpu, reporter, ctxInfo) {
430 GrContext* context = ctxInfo.grContext();
431
432 for (auto& origin : { kTopLeft_GrSurfaceOrigin, kBottomLeft_GrSurfaceOrigin }) {
433 for (int sampleCnt : {0, 4}) {
Brian Salomond17f6582017-07-19 18:28:58 -0400434 auto handle = context->getGpu()->createTestingOnlyBackendTexture(
435 nullptr, DEV_W, DEV_H, kSkia8888_GrPixelConfig, true);
436 GrBackendTexture backendTexture = GrTest::CreateBackendTexture(
437 ctxInfo.backend(), DEV_W, DEV_H, kSkia8888_GrPixelConfig, handle);
438 sk_sp<SkSurface> surface(SkSurface::MakeFromBackendTextureAsRenderTarget(
439 context, backendTexture, origin, sampleCnt, nullptr, nullptr));
Brian Osman33910292017-04-18 14:38:53 -0400440 if (!surface) {
Brian Salomond17f6582017-07-19 18:28:58 -0400441 context->getGpu()->deleteTestingOnlyBackendTexture(handle);
Brian Osman33910292017-04-18 14:38:53 -0400442 continue;
443 }
444
445 test_write_pixels(reporter, surface.get());
446
447 surface.reset();
Brian Salomond17f6582017-07-19 18:28:58 -0400448 context->getGpu()->deleteTestingOnlyBackendTexture(handle);
Brian Osman33910292017-04-18 14:38:53 -0400449 }
kkinnunen15302832015-12-01 04:35:26 -0800450 }
451}
452#endif