blob: ccb2ced4fd89ff9bea862529f5f119a0394d017b [file] [log] [blame]
bsalomon@google.comc6980972011-11-02 19:57:21 +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
Brian Salomon58389b92018-03-07 13:01:25 -05008#include <initializer_list>
bsalomon@google.comc6980972011-11-02 19:57:21 +00009#include "SkCanvas.h"
Cary Clarka4083c92017-09-15 11:59:23 -040010#include "SkColorData.h"
Matt Sarett8572d852017-02-14 11:21:02 -050011#include "SkHalf.h"
12#include "SkImageInfoPriv.h"
reed@google.com4b163ed2012-08-07 21:35:13 +000013#include "SkMathPriv.h"
reed52d9ac62014-06-30 09:05:34 -070014#include "SkSurface.h"
tfarina@chromium.org4ee16bf2014-01-10 22:08:27 +000015#include "Test.h"
tfarina@chromium.org4ee16bf2014-01-10 22:08:27 +000016
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000017#if SK_SUPPORT_GPU
kkinnunen15302832015-12-01 04:35:26 -080018#include "GrContext.h"
Robert Phillipseb4f1862017-06-08 16:38:25 -040019#include "GrContextFactory.h"
Robert Phillipse78b7252017-04-06 07:59:41 -040020#include "GrContextPriv.h"
Robert Phillips0bd24dc2018-01-16 08:06:32 -050021#include "GrProxyProvider.h"
Brian Salomon58389b92018-03-07 13:01:25 -050022#include "ProxyUtils.h"
bsalomone8d21e82015-07-16 08:23:13 -070023#include "SkGr.h"
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000024#endif
bsalomon@google.comc6980972011-11-02 19:57:21 +000025
kkinnunen15302832015-12-01 04:35:26 -080026
bsalomon@google.comc6980972011-11-02 19:57:21 +000027static const int DEV_W = 100, DEV_H = 100;
28static const SkIRect DEV_RECT = SkIRect::MakeWH(DEV_W, DEV_H);
rmistry@google.comd6176b02012-08-23 18:14:13 +000029static const SkRect DEV_RECT_S = SkRect::MakeWH(DEV_W * SK_Scalar1,
bsalomon@google.comc6980972011-11-02 19:57:21 +000030 DEV_H * SK_Scalar1);
31
bsalomone8d21e82015-07-16 08:23:13 -070032static SkPMColor get_src_color(int x, int y) {
bsalomon@google.comc6980972011-11-02 19:57:21 +000033 SkASSERT(x >= 0 && x < DEV_W);
34 SkASSERT(y >= 0 && y < DEV_H);
bsalomon@google.com6850eab2011-11-03 20:29:47 +000035
36 U8CPU r = x;
37 U8CPU g = y;
38 U8CPU b = 0xc;
39
40 U8CPU a = 0xff;
bsalomon@google.comc4364992011-11-07 15:54:49 +000041 switch ((x+y) % 5) {
bsalomon@google.com6850eab2011-11-03 20:29:47 +000042 case 0:
43 a = 0xff;
44 break;
45 case 1:
46 a = 0x80;
47 break;
48 case 2:
49 a = 0xCC;
50 break;
51 case 4:
52 a = 0x01;
53 break;
54 case 3:
55 a = 0x00;
56 break;
57 }
58 return SkPremultiplyARGBInline(a, r, g, b);
bsalomon@google.comc6980972011-11-02 19:57:21 +000059}
halcanary9d524f22016-03-29 09:03:52 -070060
bsalomone8d21e82015-07-16 08:23:13 -070061static SkPMColor get_dst_bmp_init_color(int x, int y, int w) {
bsalomon@google.comc6980972011-11-02 19:57:21 +000062 int n = y * w + x;
bsalomon@google.com6850eab2011-11-03 20:29:47 +000063
bsalomon@google.comc6980972011-11-02 19:57:21 +000064 U8CPU b = n & 0xff;
65 U8CPU g = (n >> 8) & 0xff;
66 U8CPU r = (n >> 16) & 0xff;
67 return SkPackARGB32(0xff, r, g , b);
68}
69
bsalomone8d21e82015-07-16 08:23:13 -070070static SkPMColor convert_to_pmcolor(SkColorType ct, SkAlphaType at, const uint32_t* addr,
71 bool* doUnpremul) {
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +000072 *doUnpremul = (kUnpremul_SkAlphaType == at);
73
74 const uint8_t* c = reinterpret_cast<const uint8_t*>(addr);
bsalomon@google.com6850eab2011-11-03 20:29:47 +000075 U8CPU a,r,g,b;
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +000076 switch (ct) {
77 case kBGRA_8888_SkColorType:
bsalomon@google.com6850eab2011-11-03 20:29:47 +000078 b = static_cast<U8CPU>(c[0]);
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +000079 g = static_cast<U8CPU>(c[1]);
80 r = static_cast<U8CPU>(c[2]);
bsalomon@google.com6850eab2011-11-03 20:29:47 +000081 a = static_cast<U8CPU>(c[3]);
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +000082 break;
83 case kRGBA_8888_SkColorType:
bsalomon@google.com6850eab2011-11-03 20:29:47 +000084 r = static_cast<U8CPU>(c[0]);
85 g = static_cast<U8CPU>(c[1]);
86 b = static_cast<U8CPU>(c[2]);
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +000087 a = static_cast<U8CPU>(c[3]);
bsalomon@google.com6850eab2011-11-03 20:29:47 +000088 break;
bsalomon@google.comccaa0022012-09-25 19:55:07 +000089 default:
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +000090 SkDEBUGFAIL("Unexpected colortype");
bsalomon@google.comccaa0022012-09-25 19:55:07 +000091 return 0;
bsalomon@google.com6850eab2011-11-03 20:29:47 +000092 }
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +000093
94 if (*doUnpremul) {
bsalomon@google.com6850eab2011-11-03 20:29:47 +000095 r = SkMulDiv255Ceiling(r, a);
96 g = SkMulDiv255Ceiling(g, a);
97 b = SkMulDiv255Ceiling(b, a);
98 }
99 return SkPackARGB32(a, r, g, b);
100}
101
bsalomone8d21e82015-07-16 08:23:13 -0700102static SkBitmap make_src_bitmap() {
bsalomon@google.comc6980972011-11-02 19:57:21 +0000103 static SkBitmap bmp;
104 if (bmp.isNull()) {
reed84825042014-09-02 12:50:45 -0700105 bmp.allocN32Pixels(DEV_W, DEV_H);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000106 intptr_t pixels = reinterpret_cast<intptr_t>(bmp.getPixels());
107 for (int y = 0; y < DEV_H; ++y) {
108 for (int x = 0; x < DEV_W; ++x) {
109 SkPMColor* pixel = reinterpret_cast<SkPMColor*>(pixels + y * bmp.rowBytes() + x * bmp.bytesPerPixel());
bsalomone8d21e82015-07-16 08:23:13 -0700110 *pixel = get_src_color(x, y);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000111 }
112 }
113 }
bsalomone8d21e82015-07-16 08:23:13 -0700114 return bmp;
115}
116
117static void fill_src_canvas(SkCanvas* canvas) {
bsalomon@google.comc6980972011-11-02 19:57:21 +0000118 canvas->save();
119 canvas->setMatrix(SkMatrix::I());
Mike Reedc1f77742016-12-09 09:00:50 -0500120 canvas->clipRect(DEV_RECT_S, kReplace_SkClipOp);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000121 SkPaint paint;
reed374772b2016-10-05 17:33:02 -0700122 paint.setBlendMode(SkBlendMode::kSrc);
bsalomone8d21e82015-07-16 08:23:13 -0700123 canvas->drawBitmap(make_src_bitmap(), 0, 0, &paint);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000124 canvas->restore();
125}
rmistry@google.comd6176b02012-08-23 18:14:13 +0000126
bsalomone8d21e82015-07-16 08:23:13 -0700127static void fill_dst_bmp_with_init_data(SkBitmap* bitmap) {
bsalomon@google.comc6980972011-11-02 19:57:21 +0000128 int w = bitmap->width();
129 int h = bitmap->height();
130 intptr_t pixels = reinterpret_cast<intptr_t>(bitmap->getPixels());
131 for (int y = 0; y < h; ++y) {
132 for (int x = 0; x < w; ++x) {
lsalzmana2415ac2016-10-11 14:29:12 -0700133 SkPMColor initColor = get_dst_bmp_init_color(x, y, w);
134 if (kAlpha_8_SkColorType == bitmap->colorType()) {
135 uint8_t* alpha = reinterpret_cast<uint8_t*>(pixels + y * bitmap->rowBytes() + x);
136 *alpha = SkGetPackedA32(initColor);
137 } else {
138 SkPMColor* pixel = reinterpret_cast<SkPMColor*>(pixels + y * bitmap->rowBytes() + x * bitmap->bytesPerPixel());
139 *pixel = initColor;
140 }
bsalomon@google.comc6980972011-11-02 19:57:21 +0000141 }
142 }
143}
144
bsalomone8d21e82015-07-16 08:23:13 -0700145static bool check_read_pixel(SkPMColor a, SkPMColor b, bool didPremulConversion) {
bsalomon@google.comc4364992011-11-07 15:54:49 +0000146 if (!didPremulConversion) {
147 return a == b;
148 }
149 int32_t aA = static_cast<int32_t>(SkGetPackedA32(a));
150 int32_t aR = static_cast<int32_t>(SkGetPackedR32(a));
151 int32_t aG = static_cast<int32_t>(SkGetPackedG32(a));
152 int32_t aB = SkGetPackedB32(a);
153
154 int32_t bA = static_cast<int32_t>(SkGetPackedA32(b));
155 int32_t bR = static_cast<int32_t>(SkGetPackedR32(b));
156 int32_t bG = static_cast<int32_t>(SkGetPackedG32(b));
157 int32_t bB = static_cast<int32_t>(SkGetPackedB32(b));
158
159 return aA == bA &&
160 SkAbs32(aR - bR) <= 1 &&
161 SkAbs32(aG - bG) <= 1 &&
162 SkAbs32(aB - bB) <= 1;
163}
164
bsalomon@google.comc6980972011-11-02 19:57:21 +0000165// checks the bitmap contains correct pixels after the readPixels
166// if the bitmap was prefilled with pixels it checks that these weren't
167// overwritten in the area outside the readPixels.
bsalomone8d21e82015-07-16 08:23:13 -0700168static bool check_read(skiatest::Reporter* reporter,
169 const SkBitmap& bitmap,
170 int x, int y,
171 bool checkCanvasPixels,
lsalzmana2415ac2016-10-11 14:29:12 -0700172 bool checkBitmapPixels,
173 SkColorType ct,
174 SkAlphaType at) {
175 SkASSERT(ct == bitmap.colorType() && at == bitmap.alphaType());
bsalomon@google.comc6980972011-11-02 19:57:21 +0000176 SkASSERT(!bitmap.isNull());
bsalomon@google.com6850eab2011-11-03 20:29:47 +0000177 SkASSERT(checkCanvasPixels || checkBitmapPixels);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000178
bsalomon@google.comc6980972011-11-02 19:57:21 +0000179 int bw = bitmap.width();
180 int bh = bitmap.height();
181
182 SkIRect srcRect = SkIRect::MakeXYWH(x, y, bw, bh);
183 SkIRect clippedSrcRect = DEV_RECT;
184 if (!clippedSrcRect.intersect(srcRect)) {
185 clippedSrcRect.setEmpty();
186 }
lsalzmana2415ac2016-10-11 14:29:12 -0700187 if (kAlpha_8_SkColorType == ct) {
188 for (int by = 0; by < bh; ++by) {
189 for (int bx = 0; bx < bw; ++bx) {
190 int devx = bx + srcRect.fLeft;
191 int devy = by + srcRect.fTop;
192 const uint8_t* alpha = bitmap.getAddr8(bx, by);
193
194 if (clippedSrcRect.contains(devx, devy)) {
195 if (checkCanvasPixels) {
196 uint8_t canvasAlpha = SkGetPackedA32(get_src_color(devx, devy));
197 if (canvasAlpha != *alpha) {
198 ERRORF(reporter, "Expected readback alpha (%d, %d) value 0x%02x, got 0x%02x. ",
199 bx, by, canvasAlpha, *alpha);
200 return false;
201 }
202 }
203 } else if (checkBitmapPixels) {
204 uint32_t origDstAlpha = SkGetPackedA32(get_dst_bmp_init_color(bx, by, bw));
205 if (origDstAlpha != *alpha) {
206 ERRORF(reporter, "Expected clipped out area of readback to be unchanged. "
207 "Expected 0x%02x, got 0x%02x", origDstAlpha, *alpha);
208 return false;
209 }
210 }
211 }
212 }
213 return true;
214 }
bsalomon@google.comc6980972011-11-02 19:57:21 +0000215 for (int by = 0; by < bh; ++by) {
216 for (int bx = 0; bx < bw; ++bx) {
217 int devx = bx + srcRect.fLeft;
218 int devy = by + srcRect.fTop;
rmistry@google.comd6176b02012-08-23 18:14:13 +0000219
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000220 const uint32_t* pixel = bitmap.getAddr32(bx, by);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000221
222 if (clippedSrcRect.contains(devx, devy)) {
bsalomon@google.com6850eab2011-11-03 20:29:47 +0000223 if (checkCanvasPixels) {
bsalomone8d21e82015-07-16 08:23:13 -0700224 SkPMColor canvasPixel = get_src_color(devx, devy);
bsalomon@google.comc4364992011-11-07 15:54:49 +0000225 bool didPremul;
bsalomone8d21e82015-07-16 08:23:13 -0700226 SkPMColor pmPixel = convert_to_pmcolor(ct, at, pixel, &didPremul);
bsalomon39826022015-07-23 08:07:21 -0700227 if (!check_read_pixel(pmPixel, canvasPixel, didPremul)) {
egdaniel88e8aef2016-06-27 14:34:55 -0700228 ERRORF(reporter, "Expected readback pixel (%d, %d) value 0x%08x, got 0x%08x. "
229 "Readback was unpremul: %d", bx, by, canvasPixel, pmPixel, didPremul);
bsalomon@google.com72f3dca2012-08-17 13:32:06 +0000230 return false;
bsalomon@google.com6850eab2011-11-03 20:29:47 +0000231 }
bsalomon@google.comc6980972011-11-02 19:57:21 +0000232 }
bsalomon@google.com6850eab2011-11-03 20:29:47 +0000233 } else if (checkBitmapPixels) {
bsalomon39826022015-07-23 08:07:21 -0700234 uint32_t origDstPixel = get_dst_bmp_init_color(bx, by, bw);
235 if (origDstPixel != *pixel) {
236 ERRORF(reporter, "Expected clipped out area of readback to be unchanged. "
237 "Expected 0x%08x, got 0x%08x", origDstPixel, *pixel);
bsalomon@google.com72f3dca2012-08-17 13:32:06 +0000238 return false;
bsalomon@google.comc6980972011-11-02 19:57:21 +0000239 }
240 }
241 }
242 }
bsalomon@google.com72f3dca2012-08-17 13:32:06 +0000243 return true;
bsalomon@google.comc6980972011-11-02 19:57:21 +0000244}
245
246enum BitmapInit {
247 kFirstBitmapInit = 0,
rmistry@google.comd6176b02012-08-23 18:14:13 +0000248
Mike Reed12e946b2017-04-17 10:53:29 -0400249 kTight_BitmapInit = kFirstBitmapInit,
bsalomon@google.comc6980972011-11-02 19:57:21 +0000250 kRowBytes_BitmapInit,
bsalomon9d02b262016-02-01 12:49:30 -0800251 kRowBytesOdd_BitmapInit,
rmistry@google.comd6176b02012-08-23 18:14:13 +0000252
bsalomon9d02b262016-02-01 12:49:30 -0800253 kLastAligned_BitmapInit = kRowBytes_BitmapInit,
Brian Salomona64afd62016-02-01 16:44:22 -0500254
255#if 0 // THIS CAUSES ERRORS ON WINDOWS AND SOME ANDROID DEVICES
bsalomon9d02b262016-02-01 12:49:30 -0800256 kLast_BitmapInit = kRowBytesOdd_BitmapInit
Brian Salomona64afd62016-02-01 16:44:22 -0500257#else
258 kLast_BitmapInit = kLastAligned_BitmapInit
259#endif
bsalomon@google.comc6980972011-11-02 19:57:21 +0000260};
261
commit-bot@chromium.orgddf94cf2013-10-12 17:25:17 +0000262static BitmapInit nextBMI(BitmapInit bmi) {
bsalomon@google.comc6980972011-11-02 19:57:21 +0000263 int x = bmi;
264 return static_cast<BitmapInit>(++x);
265}
266
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000267static void init_bitmap(SkBitmap* bitmap, const SkIRect& rect, BitmapInit init, SkColorType ct,
268 SkAlphaType at) {
269 SkImageInfo info = SkImageInfo::Make(rect.width(), rect.height(), ct, at);
commit-bot@chromium.orgfa9e5fa2014-02-13 22:00:04 +0000270 size_t rowBytes = 0;
bsalomon@google.comc6980972011-11-02 19:57:21 +0000271 switch (init) {
bsalomon@google.comc6980972011-11-02 19:57:21 +0000272 case kTight_BitmapInit:
273 break;
274 case kRowBytes_BitmapInit:
lsalzmana2415ac2016-10-11 14:29:12 -0700275 rowBytes = SkAlign4((info.width() + 16) * info.bytesPerPixel());
bsalomon@google.comc6980972011-11-02 19:57:21 +0000276 break;
bsalomon9d02b262016-02-01 12:49:30 -0800277 case kRowBytesOdd_BitmapInit:
lsalzmana2415ac2016-10-11 14:29:12 -0700278 rowBytes = SkAlign4(info.width() * info.bytesPerPixel()) + 3;
bsalomon9d02b262016-02-01 12:49:30 -0800279 break;
bsalomon@google.comc6980972011-11-02 19:57:21 +0000280 default:
281 SkASSERT(0);
282 break;
283 }
Mike Reed12e946b2017-04-17 10:53:29 -0400284 bitmap->allocPixels(info, rowBytes);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000285}
286
kkinnunen15302832015-12-01 04:35:26 -0800287static const struct {
288 SkColorType fColorType;
289 SkAlphaType fAlphaType;
290} gReadPixelsConfigs[] = {
291 { kRGBA_8888_SkColorType, kPremul_SkAlphaType },
292 { kRGBA_8888_SkColorType, kUnpremul_SkAlphaType },
293 { kBGRA_8888_SkColorType, kPremul_SkAlphaType },
294 { kBGRA_8888_SkColorType, kUnpremul_SkAlphaType },
lsalzmana2415ac2016-10-11 14:29:12 -0700295 { kAlpha_8_SkColorType, kPremul_SkAlphaType },
kkinnunen15302832015-12-01 04:35:26 -0800296};
297const SkIRect gReadPixelsTestRects[] = {
298 // entire thing
299 DEV_RECT,
300 // larger on all sides
301 SkIRect::MakeLTRB(-10, -10, DEV_W + 10, DEV_H + 10),
302 // fully contained
303 SkIRect::MakeLTRB(DEV_W / 4, DEV_H / 4, 3 * DEV_W / 4, 3 * DEV_H / 4),
304 // outside top left
305 SkIRect::MakeLTRB(-10, -10, -1, -1),
306 // touching top left corner
307 SkIRect::MakeLTRB(-10, -10, 0, 0),
308 // overlapping top left corner
309 SkIRect::MakeLTRB(-10, -10, DEV_W / 4, DEV_H / 4),
310 // overlapping top left and top right corners
311 SkIRect::MakeLTRB(-10, -10, DEV_W + 10, DEV_H / 4),
312 // touching entire top edge
313 SkIRect::MakeLTRB(-10, -10, DEV_W + 10, 0),
314 // overlapping top right corner
315 SkIRect::MakeLTRB(3 * DEV_W / 4, -10, DEV_W + 10, DEV_H / 4),
316 // contained in x, overlapping top edge
317 SkIRect::MakeLTRB(DEV_W / 4, -10, 3 * DEV_W / 4, DEV_H / 4),
318 // outside top right corner
319 SkIRect::MakeLTRB(DEV_W + 1, -10, DEV_W + 10, -1),
320 // touching top right corner
321 SkIRect::MakeLTRB(DEV_W, -10, DEV_W + 10, 0),
322 // overlapping top left and bottom left corners
323 SkIRect::MakeLTRB(-10, -10, DEV_W / 4, DEV_H + 10),
324 // touching entire left edge
325 SkIRect::MakeLTRB(-10, -10, 0, DEV_H + 10),
326 // overlapping bottom left corner
327 SkIRect::MakeLTRB(-10, 3 * DEV_H / 4, DEV_W / 4, DEV_H + 10),
328 // contained in y, overlapping left edge
329 SkIRect::MakeLTRB(-10, DEV_H / 4, DEV_W / 4, 3 * DEV_H / 4),
330 // outside bottom left corner
331 SkIRect::MakeLTRB(-10, DEV_H + 1, -1, DEV_H + 10),
332 // touching bottom left corner
333 SkIRect::MakeLTRB(-10, DEV_H, 0, DEV_H + 10),
334 // overlapping bottom left and bottom right corners
335 SkIRect::MakeLTRB(-10, 3 * DEV_H / 4, DEV_W + 10, DEV_H + 10),
336 // touching entire left edge
337 SkIRect::MakeLTRB(0, DEV_H, DEV_W, DEV_H + 10),
338 // overlapping bottom right corner
339 SkIRect::MakeLTRB(3 * DEV_W / 4, 3 * DEV_H / 4, DEV_W + 10, DEV_H + 10),
340 // overlapping top right and bottom right corners
341 SkIRect::MakeLTRB(3 * DEV_W / 4, -10, DEV_W + 10, DEV_H + 10),
342};
bsalomon@google.comc6980972011-11-02 19:57:21 +0000343
reede8f30622016-03-23 18:59:25 -0700344static void test_readpixels(skiatest::Reporter* reporter, const sk_sp<SkSurface>& surface,
bsalomon9d02b262016-02-01 12:49:30 -0800345 BitmapInit lastBitmapInit) {
kkinnunen15302832015-12-01 04:35:26 -0800346 SkCanvas* canvas = surface->getCanvas();
347 fill_src_canvas(canvas);
348 for (size_t rect = 0; rect < SK_ARRAY_COUNT(gReadPixelsTestRects); ++rect) {
349 const SkIRect& srcRect = gReadPixelsTestRects[rect];
bsalomon9d02b262016-02-01 12:49:30 -0800350 for (BitmapInit bmi = kFirstBitmapInit; bmi <= lastBitmapInit; bmi = nextBMI(bmi)) {
kkinnunen15302832015-12-01 04:35:26 -0800351 for (size_t c = 0; c < SK_ARRAY_COUNT(gReadPixelsConfigs); ++c) {
352 SkBitmap bmp;
353 init_bitmap(&bmp, srcRect, bmi,
354 gReadPixelsConfigs[c].fColorType, gReadPixelsConfigs[c].fAlphaType);
bsalomone8d21e82015-07-16 08:23:13 -0700355
kkinnunen15302832015-12-01 04:35:26 -0800356 // if the bitmap has pixels allocated before the readPixels,
357 // note that and fill them with pattern
358 bool startsWithPixels = !bmp.isNull();
359 if (startsWithPixels) {
360 fill_dst_bmp_with_init_data(&bmp);
361 }
362 uint32_t idBefore = surface->generationID();
Mike Reedf1942192017-07-21 14:24:29 -0400363 bool success = surface->readPixels(bmp, srcRect.fLeft, srcRect.fTop);
kkinnunen15302832015-12-01 04:35:26 -0800364 uint32_t idAfter = surface->generationID();
365
366 // we expect to succeed when the read isn't fully clipped
367 // out.
368 bool expectSuccess = SkIRect::Intersects(srcRect, DEV_RECT);
369 // determine whether we expected the read to succeed.
370 REPORTER_ASSERT(reporter, success == expectSuccess);
371 // read pixels should never change the gen id
372 REPORTER_ASSERT(reporter, idBefore == idAfter);
373
374 if (success || startsWithPixels) {
375 check_read(reporter, bmp, srcRect.fLeft, srcRect.fTop,
lsalzmana2415ac2016-10-11 14:29:12 -0700376 success, startsWithPixels,
377 gReadPixelsConfigs[c].fColorType, gReadPixelsConfigs[c].fAlphaType);
kkinnunen15302832015-12-01 04:35:26 -0800378 } else {
379 // if we had no pixels beforehand and the readPixels
380 // failed then our bitmap should still not have pixels
381 REPORTER_ASSERT(reporter, bmp.isNull());
382 }
383 }
kkinnunen15302832015-12-01 04:35:26 -0800384 }
385 }
386}
387DEF_TEST(ReadPixels, reporter) {
388 const SkImageInfo info = SkImageInfo::MakeN32Premul(DEV_W, DEV_H);
reede8f30622016-03-23 18:59:25 -0700389 auto surface(SkSurface::MakeRaster(info));
bsalomon9d02b262016-02-01 12:49:30 -0800390 // SW readback fails a premul check when reading back to an unaligned rowbytes.
391 test_readpixels(reporter, surface, kLastAligned_BitmapInit);
kkinnunen15302832015-12-01 04:35:26 -0800392}
bsalomone8d21e82015-07-16 08:23:13 -0700393#if SK_SUPPORT_GPU
egdaniel88e8aef2016-06-27 14:34:55 -0700394DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ReadPixels_Gpu, reporter, ctxInfo) {
Robert Phillipseb4f1862017-06-08 16:38:25 -0400395 if (ctxInfo.type() == sk_gpu_test::GrContextFactory::kANGLE_D3D9_ES2_ContextType ||
396 ctxInfo.type() == sk_gpu_test::GrContextFactory::kANGLE_GL_ES2_ContextType ||
397 ctxInfo.type() == sk_gpu_test::GrContextFactory::kANGLE_D3D11_ES2_ContextType) {
398 // skbug.com/6742 ReadPixels_Texture & _Gpu don't work with ANGLE ES2 configs
399 return;
400 }
401
robertphillips7e922762016-07-26 11:38:17 -0700402 const SkImageInfo ii = SkImageInfo::MakeN32Premul(DEV_W, DEV_H);
kkinnunen15302832015-12-01 04:35:26 -0800403 for (auto& origin : {kBottomLeft_GrSurfaceOrigin, kTopLeft_GrSurfaceOrigin}) {
robertphillips7e922762016-07-26 11:38:17 -0700404 sk_sp<SkSurface> surface(SkSurface::MakeRenderTarget(ctxInfo.grContext(), SkBudgeted::kNo,
405 ii, 0, origin, nullptr));
bsalomon9d02b262016-02-01 12:49:30 -0800406 test_readpixels(reporter, surface, kLast_BitmapInit);
kkinnunen15302832015-12-01 04:35:26 -0800407 }
408}
bsalomone8d21e82015-07-16 08:23:13 -0700409#endif
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000410
bsalomone8d21e82015-07-16 08:23:13 -0700411#if SK_SUPPORT_GPU
Robert Phillipse78b7252017-04-06 07:59:41 -0400412static void test_readpixels_texture(skiatest::Reporter* reporter,
Robert Phillipsbab2dbb2017-04-17 07:43:27 -0400413 sk_sp<GrSurfaceContext> sContext) {
kkinnunen15302832015-12-01 04:35:26 -0800414 for (size_t rect = 0; rect < SK_ARRAY_COUNT(gReadPixelsTestRects); ++rect) {
415 const SkIRect& srcRect = gReadPixelsTestRects[rect];
bsalomon9d02b262016-02-01 12:49:30 -0800416 for (BitmapInit bmi = kFirstBitmapInit; bmi <= kLast_BitmapInit; bmi = nextBMI(bmi)) {
kkinnunen15302832015-12-01 04:35:26 -0800417 for (size_t c = 0; c < SK_ARRAY_COUNT(gReadPixelsConfigs); ++c) {
418 SkBitmap bmp;
419 init_bitmap(&bmp, srcRect, bmi,
420 gReadPixelsConfigs[c].fColorType, gReadPixelsConfigs[c].fAlphaType);
421
422 // if the bitmap has pixels allocated before the readPixels,
423 // note that and fill them with pattern
424 bool startsWithPixels = !bmp.isNull();
425 // Try doing the read directly from a non-renderable texture
426 if (startsWithPixels) {
427 fill_dst_bmp_with_init_data(&bmp);
kkinnunen15302832015-12-01 04:35:26 -0800428 uint32_t flags = 0;
429 if (gReadPixelsConfigs[c].fAlphaType == kUnpremul_SkAlphaType) {
Robert Phillipse78b7252017-04-06 07:59:41 -0400430 flags = GrContextPriv::kUnpremul_PixelOpsFlag;
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000431 }
Robert Phillipsbab2dbb2017-04-17 07:43:27 -0400432 bool success = sContext->readPixels(bmp.info(), bmp.getPixels(),
433 bmp.rowBytes(),
434 srcRect.fLeft, srcRect.fTop, flags);
kkinnunen15302832015-12-01 04:35:26 -0800435 check_read(reporter, bmp, srcRect.fLeft, srcRect.fTop,
lsalzmana2415ac2016-10-11 14:29:12 -0700436 success, true,
437 gReadPixelsConfigs[c].fColorType, gReadPixelsConfigs[c].fAlphaType);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000438 }
439 }
440 }
441 }
442}
Robert Phillipsbab2dbb2017-04-17 07:43:27 -0400443
egdaniel88e8aef2016-06-27 14:34:55 -0700444DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ReadPixels_Texture, reporter, ctxInfo) {
Robert Phillipseb4f1862017-06-08 16:38:25 -0400445 if (ctxInfo.type() == sk_gpu_test::GrContextFactory::kANGLE_D3D9_ES2_ContextType ||
446 ctxInfo.type() == sk_gpu_test::GrContextFactory::kANGLE_GL_ES2_ContextType ||
447 ctxInfo.type() == sk_gpu_test::GrContextFactory::kANGLE_D3D11_ES2_ContextType) {
448 // skbug.com/6742 ReadPixels_Texture & _Gpu don't work with ANGLE ES2 configs
449 return;
450 }
451
Robert Phillipsbab2dbb2017-04-17 07:43:27 -0400452 GrContext* context = ctxInfo.grContext();
Robert Phillipsbab2dbb2017-04-17 07:43:27 -0400453 SkBitmap bmp = make_src_bitmap();
Robert Phillipsbab2dbb2017-04-17 07:43:27 -0400454
kkinnunen15302832015-12-01 04:35:26 -0800455 // On the GPU we will also try reading back from a non-renderable texture.
Brian Salomon8b1fb742016-11-03 15:21:06 -0400456 for (auto origin : {kBottomLeft_GrSurfaceOrigin, kTopLeft_GrSurfaceOrigin}) {
Brian Salomon58389b92018-03-07 13:01:25 -0500457 for (auto isRT : {false, true}) {
458 sk_sp<GrTextureProxy> proxy = sk_gpu_test::MakeTextureProxyFromData(
459 context, isRT, DEV_W, DEV_H, bmp.colorType(), origin, bmp.getPixels(),
460 bmp.rowBytes());
Robert Phillipsbab2dbb2017-04-17 07:43:27 -0400461 sk_sp<GrSurfaceContext> sContext = context->contextPriv().makeWrappedSurfaceContext(
Robert Phillipsd5f9cdd2018-01-31 09:29:48 -0500462 std::move(proxy));
Robert Phillipsbab2dbb2017-04-17 07:43:27 -0400463 test_readpixels_texture(reporter, std::move(sContext));
Brian Salomon8b1fb742016-11-03 15:21:06 -0400464 }
kkinnunen15302832015-12-01 04:35:26 -0800465 }
466}
467#endif
Matt Sarett8572d852017-02-14 11:21:02 -0500468
469///////////////////////////////////////////////////////////////////////////////////////////////////
470
471static const uint32_t kNumPixels = 5;
472
473// The five reference pixels are: red, green, blue, white, black.
474// Five is an interesting number to test because we'll exercise a full 4-wide SIMD vector
475// plus a tail pixel.
476static const uint32_t rgba[kNumPixels] = {
477 0xFF0000FF, 0xFF00FF00, 0xFFFF0000, 0xFFFFFFFF, 0xFF000000
478};
479static const uint32_t bgra[kNumPixels] = {
480 0xFFFF0000, 0xFF00FF00, 0xFF0000FF, 0xFFFFFFFF, 0xFF000000
481};
482static const uint16_t rgb565[kNumPixels] = {
483 SK_R16_MASK_IN_PLACE, SK_G16_MASK_IN_PLACE, SK_B16_MASK_IN_PLACE, 0xFFFF, 0x0
484};
485
486static const uint16_t rgba4444[kNumPixels] = { 0xF00F, 0x0F0F, 0x00FF, 0xFFFF, 0x000F };
487
488static const uint64_t kRed = (uint64_t) SK_Half1 << 0;
489static const uint64_t kGreen = (uint64_t) SK_Half1 << 16;
490static const uint64_t kBlue = (uint64_t) SK_Half1 << 32;
491static const uint64_t kAlpha = (uint64_t) SK_Half1 << 48;
492static const uint64_t f16[kNumPixels] = {
493 kAlpha | kRed, kAlpha | kGreen, kAlpha | kBlue, kAlpha | kBlue | kGreen | kRed, kAlpha
494};
495
Matt Sarett8572d852017-02-14 11:21:02 -0500496static const uint8_t alpha8[kNumPixels] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
497static const uint8_t gray8[kNumPixels] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
498
499static const void* five_reference_pixels(SkColorType colorType) {
500 switch (colorType) {
501 case kUnknown_SkColorType:
502 return nullptr;
503 case kAlpha_8_SkColorType:
504 return alpha8;
505 case kRGB_565_SkColorType:
506 return rgb565;
507 case kARGB_4444_SkColorType:
508 return rgba4444;
509 case kRGBA_8888_SkColorType:
510 return rgba;
511 case kBGRA_8888_SkColorType:
512 return bgra;
Matt Sarett8572d852017-02-14 11:21:02 -0500513 case kGray_8_SkColorType:
514 return gray8;
515 case kRGBA_F16_SkColorType:
516 return f16;
Mike Reed304a07c2017-07-12 15:10:28 -0400517 default:
518 return nullptr; // remove me when kIndex_8 is removed from the enum
Matt Sarett8572d852017-02-14 11:21:02 -0500519 }
520
521 SkASSERT(false);
522 return nullptr;
523}
524
525static void test_conversion(skiatest::Reporter* r, const SkImageInfo& dstInfo,
526 const SkImageInfo& srcInfo) {
Matt Sarett26b44df2017-05-02 16:04:56 -0400527 if (!SkImageInfoIsValidRenderingCS(srcInfo)) {
Matt Sarett8572d852017-02-14 11:21:02 -0500528 return;
529 }
530
Matt Sarett8572d852017-02-14 11:21:02 -0500531 const void* srcPixels = five_reference_pixels(srcInfo.colorType());
Mike Reed304a07c2017-07-12 15:10:28 -0400532 SkPixmap srcPixmap(srcInfo, srcPixels, srcInfo.minRowBytes());
Matt Sarett8572d852017-02-14 11:21:02 -0500533 sk_sp<SkImage> src = SkImage::MakeFromRaster(srcPixmap, nullptr, nullptr);
534 REPORTER_ASSERT(r, src);
535
536 // Enough space for 5 pixels when color type is F16, more than enough space in other cases.
537 uint64_t dstPixels[kNumPixels];
Mike Reed304a07c2017-07-12 15:10:28 -0400538 SkPixmap dstPixmap(dstInfo, dstPixels, dstInfo.minRowBytes());
Matt Sarett8572d852017-02-14 11:21:02 -0500539 bool success = src->readPixels(dstPixmap, 0, 0);
540 REPORTER_ASSERT(r, success == SkImageInfoValidConversion(dstInfo, srcInfo));
541
542 if (success) {
543 if (kGray_8_SkColorType == srcInfo.colorType() &&
544 kGray_8_SkColorType != dstInfo.colorType())
545 {
546 // This conversion is legal, but we won't get the "reference" pixels since we cannot
547 // represent colors in kGray8.
548 return;
549 }
550
551 REPORTER_ASSERT(r, 0 == memcmp(dstPixels, five_reference_pixels(dstInfo.colorType()),
552 kNumPixels * SkColorTypeBytesPerPixel(dstInfo.colorType())));
553
554 }
555}
556
557DEF_TEST(ReadPixels_ValidConversion, reporter) {
558 const SkColorType kColorTypes[] = {
559 kUnknown_SkColorType,
560 kAlpha_8_SkColorType,
561 kRGB_565_SkColorType,
562 kARGB_4444_SkColorType,
563 kRGBA_8888_SkColorType,
564 kBGRA_8888_SkColorType,
Matt Sarett8572d852017-02-14 11:21:02 -0500565 kGray_8_SkColorType,
566 kRGBA_F16_SkColorType,
567 };
568
569 const SkAlphaType kAlphaTypes[] = {
570 kUnknown_SkAlphaType,
571 kOpaque_SkAlphaType,
572 kPremul_SkAlphaType,
573 kUnpremul_SkAlphaType,
574 };
575
576 const sk_sp<SkColorSpace> kColorSpaces[] = {
577 nullptr,
578 SkColorSpace::MakeSRGB(),
579 };
580
581 for (SkColorType dstCT : kColorTypes) {
582 for (SkAlphaType dstAT: kAlphaTypes) {
583 for (sk_sp<SkColorSpace> dstCS : kColorSpaces) {
584 for (SkColorType srcCT : kColorTypes) {
585 for (SkAlphaType srcAT: kAlphaTypes) {
586 for (sk_sp<SkColorSpace> srcCS : kColorSpaces) {
587 if (kRGBA_F16_SkColorType == dstCT && dstCS) {
Brian Osman36703d92017-12-12 14:09:31 -0500588 dstCS = dstCS->makeLinearGamma();
Matt Sarett8572d852017-02-14 11:21:02 -0500589 }
590
591 if (kRGBA_F16_SkColorType == srcCT && srcCS) {
Brian Osman36703d92017-12-12 14:09:31 -0500592 srcCS = srcCS->makeLinearGamma();
Matt Sarett8572d852017-02-14 11:21:02 -0500593 }
594
595 test_conversion(reporter,
596 SkImageInfo::Make(kNumPixels, 1, dstCT, dstAT, dstCS),
597 SkImageInfo::Make(kNumPixels, 1, srcCT, srcAT, srcCS));
598 }
599 }
600 }
601 }
602 }
603 }
604}