blob: 7bd1fe5914d7e2e5fe1db9cffdc082d2dec24efd [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
kkinnunen15302832015-12-01 04:35:26 -080017#include "GrContext.h"
Robert Phillipseb4f1862017-06-08 16:38:25 -040018#include "GrContextFactory.h"
Robert Phillipse78b7252017-04-06 07:59:41 -040019#include "GrContextPriv.h"
Robert Phillips0bd24dc2018-01-16 08:06:32 -050020#include "GrProxyProvider.h"
Brian Salomon58389b92018-03-07 13:01:25 -050021#include "ProxyUtils.h"
bsalomone8d21e82015-07-16 08:23:13 -070022#include "SkGr.h"
bsalomon@google.comc6980972011-11-02 19:57:21 +000023
kkinnunen15302832015-12-01 04:35:26 -080024
bsalomon@google.comc6980972011-11-02 19:57:21 +000025static const int DEV_W = 100, DEV_H = 100;
26static const SkIRect DEV_RECT = SkIRect::MakeWH(DEV_W, DEV_H);
rmistry@google.comd6176b02012-08-23 18:14:13 +000027static const SkRect DEV_RECT_S = SkRect::MakeWH(DEV_W * SK_Scalar1,
bsalomon@google.comc6980972011-11-02 19:57:21 +000028 DEV_H * SK_Scalar1);
29
bsalomone8d21e82015-07-16 08:23:13 -070030static SkPMColor get_src_color(int x, int y) {
bsalomon@google.comc6980972011-11-02 19:57:21 +000031 SkASSERT(x >= 0 && x < DEV_W);
32 SkASSERT(y >= 0 && y < DEV_H);
bsalomon@google.com6850eab2011-11-03 20:29:47 +000033
34 U8CPU r = x;
35 U8CPU g = y;
36 U8CPU b = 0xc;
37
38 U8CPU a = 0xff;
bsalomon@google.comc4364992011-11-07 15:54:49 +000039 switch ((x+y) % 5) {
bsalomon@google.com6850eab2011-11-03 20:29:47 +000040 case 0:
41 a = 0xff;
42 break;
43 case 1:
44 a = 0x80;
45 break;
46 case 2:
47 a = 0xCC;
48 break;
49 case 4:
50 a = 0x01;
51 break;
52 case 3:
53 a = 0x00;
54 break;
55 }
56 return SkPremultiplyARGBInline(a, r, g, b);
bsalomon@google.comc6980972011-11-02 19:57:21 +000057}
halcanary9d524f22016-03-29 09:03:52 -070058
bsalomone8d21e82015-07-16 08:23:13 -070059static SkPMColor get_dst_bmp_init_color(int x, int y, int w) {
bsalomon@google.comc6980972011-11-02 19:57:21 +000060 int n = y * w + x;
bsalomon@google.com6850eab2011-11-03 20:29:47 +000061
bsalomon@google.comc6980972011-11-02 19:57:21 +000062 U8CPU b = n & 0xff;
63 U8CPU g = (n >> 8) & 0xff;
64 U8CPU r = (n >> 16) & 0xff;
65 return SkPackARGB32(0xff, r, g , b);
66}
67
Brian Salomon5fba7ad2018-03-22 10:01:16 -040068// TODO: Make this consider both ATs
bsalomone8d21e82015-07-16 08:23:13 -070069static SkPMColor convert_to_pmcolor(SkColorType ct, SkAlphaType at, const uint32_t* addr,
70 bool* doUnpremul) {
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +000071 *doUnpremul = (kUnpremul_SkAlphaType == at);
72
73 const uint8_t* c = reinterpret_cast<const uint8_t*>(addr);
bsalomon@google.com6850eab2011-11-03 20:29:47 +000074 U8CPU a,r,g,b;
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +000075 switch (ct) {
76 case kBGRA_8888_SkColorType:
bsalomon@google.com6850eab2011-11-03 20:29:47 +000077 b = static_cast<U8CPU>(c[0]);
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +000078 g = static_cast<U8CPU>(c[1]);
79 r = static_cast<U8CPU>(c[2]);
bsalomon@google.com6850eab2011-11-03 20:29:47 +000080 a = static_cast<U8CPU>(c[3]);
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +000081 break;
Brian Salomon5fba7ad2018-03-22 10:01:16 -040082 case kRGB_888x_SkColorType: // fallthrough
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +000083 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]);
Brian Salomon5fba7ad2018-03-22 10:01:16 -040087 // We set this even when for kRGB_888x because our caller will validate that it is 0xff.
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +000088 a = static_cast<U8CPU>(c[3]);
bsalomon@google.com6850eab2011-11-03 20:29:47 +000089 break;
bsalomon@google.comccaa0022012-09-25 19:55:07 +000090 default:
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +000091 SkDEBUGFAIL("Unexpected colortype");
bsalomon@google.comccaa0022012-09-25 19:55:07 +000092 return 0;
bsalomon@google.com6850eab2011-11-03 20:29:47 +000093 }
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +000094
95 if (*doUnpremul) {
bsalomon@google.com6850eab2011-11-03 20:29:47 +000096 r = SkMulDiv255Ceiling(r, a);
97 g = SkMulDiv255Ceiling(g, a);
98 b = SkMulDiv255Ceiling(b, a);
99 }
100 return SkPackARGB32(a, r, g, b);
101}
102
bsalomone8d21e82015-07-16 08:23:13 -0700103static SkBitmap make_src_bitmap() {
bsalomon@google.comc6980972011-11-02 19:57:21 +0000104 static SkBitmap bmp;
105 if (bmp.isNull()) {
reed84825042014-09-02 12:50:45 -0700106 bmp.allocN32Pixels(DEV_W, DEV_H);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000107 intptr_t pixels = reinterpret_cast<intptr_t>(bmp.getPixels());
108 for (int y = 0; y < DEV_H; ++y) {
109 for (int x = 0; x < DEV_W; ++x) {
110 SkPMColor* pixel = reinterpret_cast<SkPMColor*>(pixels + y * bmp.rowBytes() + x * bmp.bytesPerPixel());
bsalomone8d21e82015-07-16 08:23:13 -0700111 *pixel = get_src_color(x, y);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000112 }
113 }
114 }
bsalomone8d21e82015-07-16 08:23:13 -0700115 return bmp;
116}
117
118static void fill_src_canvas(SkCanvas* canvas) {
bsalomon@google.comc6980972011-11-02 19:57:21 +0000119 canvas->save();
120 canvas->setMatrix(SkMatrix::I());
Mike Reedc1f77742016-12-09 09:00:50 -0500121 canvas->clipRect(DEV_RECT_S, kReplace_SkClipOp);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000122 SkPaint paint;
reed374772b2016-10-05 17:33:02 -0700123 paint.setBlendMode(SkBlendMode::kSrc);
bsalomone8d21e82015-07-16 08:23:13 -0700124 canvas->drawBitmap(make_src_bitmap(), 0, 0, &paint);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000125 canvas->restore();
126}
rmistry@google.comd6176b02012-08-23 18:14:13 +0000127
bsalomone8d21e82015-07-16 08:23:13 -0700128static void fill_dst_bmp_with_init_data(SkBitmap* bitmap) {
bsalomon@google.comc6980972011-11-02 19:57:21 +0000129 int w = bitmap->width();
130 int h = bitmap->height();
131 intptr_t pixels = reinterpret_cast<intptr_t>(bitmap->getPixels());
132 for (int y = 0; y < h; ++y) {
133 for (int x = 0; x < w; ++x) {
lsalzmana2415ac2016-10-11 14:29:12 -0700134 SkPMColor initColor = get_dst_bmp_init_color(x, y, w);
135 if (kAlpha_8_SkColorType == bitmap->colorType()) {
136 uint8_t* alpha = reinterpret_cast<uint8_t*>(pixels + y * bitmap->rowBytes() + x);
137 *alpha = SkGetPackedA32(initColor);
138 } else {
139 SkPMColor* pixel = reinterpret_cast<SkPMColor*>(pixels + y * bitmap->rowBytes() + x * bitmap->bytesPerPixel());
140 *pixel = initColor;
141 }
bsalomon@google.comc6980972011-11-02 19:57:21 +0000142 }
143 }
144}
145
bsalomone8d21e82015-07-16 08:23:13 -0700146static bool check_read_pixel(SkPMColor a, SkPMColor b, bool didPremulConversion) {
bsalomon@google.comc4364992011-11-07 15:54:49 +0000147 if (!didPremulConversion) {
148 return a == b;
149 }
150 int32_t aA = static_cast<int32_t>(SkGetPackedA32(a));
151 int32_t aR = static_cast<int32_t>(SkGetPackedR32(a));
152 int32_t aG = static_cast<int32_t>(SkGetPackedG32(a));
153 int32_t aB = SkGetPackedB32(a);
154
155 int32_t bA = static_cast<int32_t>(SkGetPackedA32(b));
156 int32_t bR = static_cast<int32_t>(SkGetPackedR32(b));
157 int32_t bG = static_cast<int32_t>(SkGetPackedG32(b));
158 int32_t bB = static_cast<int32_t>(SkGetPackedB32(b));
159
160 return aA == bA &&
161 SkAbs32(aR - bR) <= 1 &&
162 SkAbs32(aG - bG) <= 1 &&
163 SkAbs32(aB - bB) <= 1;
164}
165
bsalomon@google.comc6980972011-11-02 19:57:21 +0000166// checks the bitmap contains correct pixels after the readPixels
167// if the bitmap was prefilled with pixels it checks that these weren't
168// overwritten in the area outside the readPixels.
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400169static bool check_read(skiatest::Reporter* reporter, const SkBitmap& bitmap, int x, int y,
170 bool checkSurfacePixels, bool checkBitmapPixels,
171 SkAlphaType surfaceAlphaType) {
172 SkAlphaType bmpAT = bitmap.alphaType();
173 SkColorType bmpCT = bitmap.colorType();
bsalomon@google.comc6980972011-11-02 19:57:21 +0000174 SkASSERT(!bitmap.isNull());
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400175 SkASSERT(checkSurfacePixels || checkBitmapPixels);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000176
bsalomon@google.comc6980972011-11-02 19:57:21 +0000177 int bw = bitmap.width();
178 int bh = bitmap.height();
179
180 SkIRect srcRect = SkIRect::MakeXYWH(x, y, bw, bh);
181 SkIRect clippedSrcRect = DEV_RECT;
182 if (!clippedSrcRect.intersect(srcRect)) {
183 clippedSrcRect.setEmpty();
184 }
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400185 if (kAlpha_8_SkColorType == bmpCT) {
lsalzmana2415ac2016-10-11 14:29:12 -0700186 for (int by = 0; by < bh; ++by) {
187 for (int bx = 0; bx < bw; ++bx) {
188 int devx = bx + srcRect.fLeft;
189 int devy = by + srcRect.fTop;
190 const uint8_t* alpha = bitmap.getAddr8(bx, by);
191
192 if (clippedSrcRect.contains(devx, devy)) {
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400193 if (checkSurfacePixels) {
194 uint8_t surfaceAlpha = (surfaceAlphaType == kOpaque_SkAlphaType)
195 ? 0xFF
196 : SkGetPackedA32(get_src_color(devx, devy));
197 if (surfaceAlpha != *alpha) {
198 ERRORF(reporter,
199 "Expected readback alpha (%d, %d) value 0x%02x, got 0x%02x. ",
200 bx, by, surfaceAlpha, *alpha);
lsalzmana2415ac2016-10-11 14:29:12 -0700201 return false;
202 }
203 }
204 } else if (checkBitmapPixels) {
205 uint32_t origDstAlpha = SkGetPackedA32(get_dst_bmp_init_color(bx, by, bw));
206 if (origDstAlpha != *alpha) {
207 ERRORF(reporter, "Expected clipped out area of readback to be unchanged. "
208 "Expected 0x%02x, got 0x%02x", origDstAlpha, *alpha);
209 return false;
210 }
211 }
212 }
213 }
214 return true;
215 }
bsalomon@google.comc6980972011-11-02 19:57:21 +0000216 for (int by = 0; by < bh; ++by) {
217 for (int bx = 0; bx < bw; ++bx) {
218 int devx = bx + srcRect.fLeft;
219 int devy = by + srcRect.fTop;
rmistry@google.comd6176b02012-08-23 18:14:13 +0000220
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000221 const uint32_t* pixel = bitmap.getAddr32(bx, by);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000222
223 if (clippedSrcRect.contains(devx, devy)) {
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400224 if (checkSurfacePixels) {
225 SkPMColor surfacePMColor = get_src_color(devx, devy);
226 if (kOpaque_SkAlphaType == surfaceAlphaType || kOpaque_SkAlphaType == bmpAT) {
227 surfacePMColor |= 0xFF000000;
228 }
bsalomon@google.comc4364992011-11-07 15:54:49 +0000229 bool didPremul;
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400230 SkPMColor pmPixel = convert_to_pmcolor(bmpCT, bmpAT, pixel, &didPremul);
231 if (!check_read_pixel(pmPixel, surfacePMColor, didPremul)) {
232 ERRORF(reporter,
233 "Expected readback pixel (%d, %d) value 0x%08x, got 0x%08x. "
234 "Readback was unpremul: %d",
235 bx, by, surfacePMColor, pmPixel, didPremul);
bsalomon@google.com72f3dca2012-08-17 13:32:06 +0000236 return false;
bsalomon@google.com6850eab2011-11-03 20:29:47 +0000237 }
bsalomon@google.comc6980972011-11-02 19:57:21 +0000238 }
bsalomon@google.com6850eab2011-11-03 20:29:47 +0000239 } else if (checkBitmapPixels) {
bsalomon39826022015-07-23 08:07:21 -0700240 uint32_t origDstPixel = get_dst_bmp_init_color(bx, by, bw);
241 if (origDstPixel != *pixel) {
242 ERRORF(reporter, "Expected clipped out area of readback to be unchanged. "
243 "Expected 0x%08x, got 0x%08x", origDstPixel, *pixel);
bsalomon@google.com72f3dca2012-08-17 13:32:06 +0000244 return false;
bsalomon@google.comc6980972011-11-02 19:57:21 +0000245 }
246 }
247 }
248 }
bsalomon@google.com72f3dca2012-08-17 13:32:06 +0000249 return true;
bsalomon@google.comc6980972011-11-02 19:57:21 +0000250}
251
252enum BitmapInit {
253 kFirstBitmapInit = 0,
rmistry@google.comd6176b02012-08-23 18:14:13 +0000254
Mike Reed12e946b2017-04-17 10:53:29 -0400255 kTight_BitmapInit = kFirstBitmapInit,
bsalomon@google.comc6980972011-11-02 19:57:21 +0000256 kRowBytes_BitmapInit,
bsalomon9d02b262016-02-01 12:49:30 -0800257 kRowBytesOdd_BitmapInit,
rmistry@google.comd6176b02012-08-23 18:14:13 +0000258
bsalomon9d02b262016-02-01 12:49:30 -0800259 kLastAligned_BitmapInit = kRowBytes_BitmapInit,
Brian Salomona64afd62016-02-01 16:44:22 -0500260
261#if 0 // THIS CAUSES ERRORS ON WINDOWS AND SOME ANDROID DEVICES
bsalomon9d02b262016-02-01 12:49:30 -0800262 kLast_BitmapInit = kRowBytesOdd_BitmapInit
Brian Salomona64afd62016-02-01 16:44:22 -0500263#else
264 kLast_BitmapInit = kLastAligned_BitmapInit
265#endif
bsalomon@google.comc6980972011-11-02 19:57:21 +0000266};
267
commit-bot@chromium.orgddf94cf2013-10-12 17:25:17 +0000268static BitmapInit nextBMI(BitmapInit bmi) {
bsalomon@google.comc6980972011-11-02 19:57:21 +0000269 int x = bmi;
270 return static_cast<BitmapInit>(++x);
271}
272
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000273static void init_bitmap(SkBitmap* bitmap, const SkIRect& rect, BitmapInit init, SkColorType ct,
274 SkAlphaType at) {
275 SkImageInfo info = SkImageInfo::Make(rect.width(), rect.height(), ct, at);
commit-bot@chromium.orgfa9e5fa2014-02-13 22:00:04 +0000276 size_t rowBytes = 0;
bsalomon@google.comc6980972011-11-02 19:57:21 +0000277 switch (init) {
bsalomon@google.comc6980972011-11-02 19:57:21 +0000278 case kTight_BitmapInit:
279 break;
280 case kRowBytes_BitmapInit:
lsalzmana2415ac2016-10-11 14:29:12 -0700281 rowBytes = SkAlign4((info.width() + 16) * info.bytesPerPixel());
bsalomon@google.comc6980972011-11-02 19:57:21 +0000282 break;
bsalomon9d02b262016-02-01 12:49:30 -0800283 case kRowBytesOdd_BitmapInit:
lsalzmana2415ac2016-10-11 14:29:12 -0700284 rowBytes = SkAlign4(info.width() * info.bytesPerPixel()) + 3;
bsalomon9d02b262016-02-01 12:49:30 -0800285 break;
bsalomon@google.comc6980972011-11-02 19:57:21 +0000286 default:
287 SkASSERT(0);
288 break;
289 }
Mike Reed12e946b2017-04-17 10:53:29 -0400290 bitmap->allocPixels(info, rowBytes);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000291}
292
kkinnunen15302832015-12-01 04:35:26 -0800293static const struct {
294 SkColorType fColorType;
295 SkAlphaType fAlphaType;
296} gReadPixelsConfigs[] = {
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400297 {kRGBA_8888_SkColorType, kPremul_SkAlphaType},
298 {kRGBA_8888_SkColorType, kUnpremul_SkAlphaType},
299 {kRGB_888x_SkColorType, kOpaque_SkAlphaType},
300 {kBGRA_8888_SkColorType, kPremul_SkAlphaType},
301 {kBGRA_8888_SkColorType, kUnpremul_SkAlphaType},
302 {kAlpha_8_SkColorType, kPremul_SkAlphaType},
kkinnunen15302832015-12-01 04:35:26 -0800303};
304const SkIRect gReadPixelsTestRects[] = {
305 // entire thing
306 DEV_RECT,
307 // larger on all sides
308 SkIRect::MakeLTRB(-10, -10, DEV_W + 10, DEV_H + 10),
309 // fully contained
310 SkIRect::MakeLTRB(DEV_W / 4, DEV_H / 4, 3 * DEV_W / 4, 3 * DEV_H / 4),
311 // outside top left
312 SkIRect::MakeLTRB(-10, -10, -1, -1),
313 // touching top left corner
314 SkIRect::MakeLTRB(-10, -10, 0, 0),
315 // overlapping top left corner
316 SkIRect::MakeLTRB(-10, -10, DEV_W / 4, DEV_H / 4),
317 // overlapping top left and top right corners
318 SkIRect::MakeLTRB(-10, -10, DEV_W + 10, DEV_H / 4),
319 // touching entire top edge
320 SkIRect::MakeLTRB(-10, -10, DEV_W + 10, 0),
321 // overlapping top right corner
322 SkIRect::MakeLTRB(3 * DEV_W / 4, -10, DEV_W + 10, DEV_H / 4),
323 // contained in x, overlapping top edge
324 SkIRect::MakeLTRB(DEV_W / 4, -10, 3 * DEV_W / 4, DEV_H / 4),
325 // outside top right corner
326 SkIRect::MakeLTRB(DEV_W + 1, -10, DEV_W + 10, -1),
327 // touching top right corner
328 SkIRect::MakeLTRB(DEV_W, -10, DEV_W + 10, 0),
329 // overlapping top left and bottom left corners
330 SkIRect::MakeLTRB(-10, -10, DEV_W / 4, DEV_H + 10),
331 // touching entire left edge
332 SkIRect::MakeLTRB(-10, -10, 0, DEV_H + 10),
333 // overlapping bottom left corner
334 SkIRect::MakeLTRB(-10, 3 * DEV_H / 4, DEV_W / 4, DEV_H + 10),
335 // contained in y, overlapping left edge
336 SkIRect::MakeLTRB(-10, DEV_H / 4, DEV_W / 4, 3 * DEV_H / 4),
337 // outside bottom left corner
338 SkIRect::MakeLTRB(-10, DEV_H + 1, -1, DEV_H + 10),
339 // touching bottom left corner
340 SkIRect::MakeLTRB(-10, DEV_H, 0, DEV_H + 10),
341 // overlapping bottom left and bottom right corners
342 SkIRect::MakeLTRB(-10, 3 * DEV_H / 4, DEV_W + 10, DEV_H + 10),
343 // touching entire left edge
344 SkIRect::MakeLTRB(0, DEV_H, DEV_W, DEV_H + 10),
345 // overlapping bottom right corner
346 SkIRect::MakeLTRB(3 * DEV_W / 4, 3 * DEV_H / 4, DEV_W + 10, DEV_H + 10),
347 // overlapping top right and bottom right corners
348 SkIRect::MakeLTRB(3 * DEV_W / 4, -10, DEV_W + 10, DEV_H + 10),
349};
bsalomon@google.comc6980972011-11-02 19:57:21 +0000350
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400351enum class ReadSuccessExpectation {
352 kNo,
353 kMaybe,
354 kYes,
355};
356
357bool check_success_expectation(ReadSuccessExpectation expectation, bool actualSuccess) {
358 switch (expectation) {
359 case ReadSuccessExpectation::kMaybe:
360 return true;
361 case ReadSuccessExpectation::kNo:
362 return !actualSuccess;
363 case ReadSuccessExpectation::kYes:
364 return actualSuccess;
365 }
366 return false;
367}
368
369ReadSuccessExpectation read_should_succeed(const SkIRect& srcRect, const SkImageInfo& dstInfo,
370 const SkImageInfo& srcInfo, bool isGPU) {
371 if (!SkIRect::Intersects(srcRect, DEV_RECT)) {
372 return ReadSuccessExpectation::kNo;
373 }
374 if (!SkImageInfoValidConversion(dstInfo, srcInfo)) {
375 return ReadSuccessExpectation::kNo;
376 }
377 if (!isGPU) {
378 return ReadSuccessExpectation::kYes;
379 }
380 // This serves more as documentation of what currently works on the GPU rather than desired
381 // expectations. Once we make GrSurfaceContext color/alpha type aware and clean up some read
382 // pixels code we will make more scenarios work.
383
384 // The GPU code current only does the premul->unpremul conversion, not the reverse.
385 if (srcInfo.alphaType() == kUnpremul_SkAlphaType &&
386 dstInfo.alphaType() == kPremul_SkAlphaType) {
387 return ReadSuccessExpectation::kNo;
388 }
389 // We don't currently require reading alpha-only surfaces to succeed because of some pessimistic
390 // caps decisions and alpha/red complexity in GL.
391 if (SkColorTypeIsAlphaOnly(srcInfo.colorType())) {
392 return ReadSuccessExpectation::kMaybe;
393 }
394 if (!SkColorTypeIsAlwaysOpaque(srcInfo.colorType()) &&
395 SkColorTypeIsAlwaysOpaque(dstInfo.colorType())) {
396 return ReadSuccessExpectation::kNo;
397 }
398 return ReadSuccessExpectation::kYes;
399}
400
reede8f30622016-03-23 18:59:25 -0700401static void test_readpixels(skiatest::Reporter* reporter, const sk_sp<SkSurface>& surface,
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400402 const SkImageInfo& surfaceInfo, BitmapInit lastBitmapInit) {
kkinnunen15302832015-12-01 04:35:26 -0800403 SkCanvas* canvas = surface->getCanvas();
404 fill_src_canvas(canvas);
405 for (size_t rect = 0; rect < SK_ARRAY_COUNT(gReadPixelsTestRects); ++rect) {
406 const SkIRect& srcRect = gReadPixelsTestRects[rect];
bsalomon9d02b262016-02-01 12:49:30 -0800407 for (BitmapInit bmi = kFirstBitmapInit; bmi <= lastBitmapInit; bmi = nextBMI(bmi)) {
kkinnunen15302832015-12-01 04:35:26 -0800408 for (size_t c = 0; c < SK_ARRAY_COUNT(gReadPixelsConfigs); ++c) {
409 SkBitmap bmp;
410 init_bitmap(&bmp, srcRect, bmi,
411 gReadPixelsConfigs[c].fColorType, gReadPixelsConfigs[c].fAlphaType);
bsalomone8d21e82015-07-16 08:23:13 -0700412
kkinnunen15302832015-12-01 04:35:26 -0800413 // if the bitmap has pixels allocated before the readPixels,
414 // note that and fill them with pattern
415 bool startsWithPixels = !bmp.isNull();
416 if (startsWithPixels) {
417 fill_dst_bmp_with_init_data(&bmp);
418 }
419 uint32_t idBefore = surface->generationID();
Mike Reedf1942192017-07-21 14:24:29 -0400420 bool success = surface->readPixels(bmp, srcRect.fLeft, srcRect.fTop);
kkinnunen15302832015-12-01 04:35:26 -0800421 uint32_t idAfter = surface->generationID();
422
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400423 // we expect to succeed when the read isn't fully clipped out and the infos are
424 // compatible.
425 bool isGPU = SkToBool(surface->getCanvas()->getGrContext());
426 auto expectSuccess = read_should_succeed(srcRect, bmp.info(), surfaceInfo, isGPU);
kkinnunen15302832015-12-01 04:35:26 -0800427 // determine whether we expected the read to succeed.
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400428 REPORTER_ASSERT(reporter, check_success_expectation(expectSuccess, success),
429 "Read succeed=%d unexpectedly, src ct/at: %d/%d, dst ct/at: %d/%d",
430 success, surfaceInfo.colorType(), surfaceInfo.alphaType(),
431 bmp.info().colorType(), bmp.info().alphaType());
kkinnunen15302832015-12-01 04:35:26 -0800432 // read pixels should never change the gen id
433 REPORTER_ASSERT(reporter, idBefore == idAfter);
434
435 if (success || startsWithPixels) {
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400436 check_read(reporter, bmp, srcRect.fLeft, srcRect.fTop, success,
437 startsWithPixels, surfaceInfo.alphaType());
kkinnunen15302832015-12-01 04:35:26 -0800438 } else {
439 // if we had no pixels beforehand and the readPixels
440 // failed then our bitmap should still not have pixels
441 REPORTER_ASSERT(reporter, bmp.isNull());
442 }
443 }
kkinnunen15302832015-12-01 04:35:26 -0800444 }
445 }
446}
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400447
kkinnunen15302832015-12-01 04:35:26 -0800448DEF_TEST(ReadPixels, reporter) {
449 const SkImageInfo info = SkImageInfo::MakeN32Premul(DEV_W, DEV_H);
reede8f30622016-03-23 18:59:25 -0700450 auto surface(SkSurface::MakeRaster(info));
bsalomon9d02b262016-02-01 12:49:30 -0800451 // SW readback fails a premul check when reading back to an unaligned rowbytes.
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400452 test_readpixels(reporter, surface, info, kLastAligned_BitmapInit);
kkinnunen15302832015-12-01 04:35:26 -0800453}
egdaniel88e8aef2016-06-27 14:34:55 -0700454DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ReadPixels_Gpu, reporter, ctxInfo) {
Robert Phillipseb4f1862017-06-08 16:38:25 -0400455 if (ctxInfo.type() == sk_gpu_test::GrContextFactory::kANGLE_D3D9_ES2_ContextType ||
456 ctxInfo.type() == sk_gpu_test::GrContextFactory::kANGLE_GL_ES2_ContextType ||
457 ctxInfo.type() == sk_gpu_test::GrContextFactory::kANGLE_D3D11_ES2_ContextType) {
458 // skbug.com/6742 ReadPixels_Texture & _Gpu don't work with ANGLE ES2 configs
459 return;
460 }
461
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400462 static const SkImageInfo kImageInfos[] = {
463 SkImageInfo::Make(DEV_W, DEV_H, kRGBA_8888_SkColorType, kPremul_SkAlphaType),
464 SkImageInfo::Make(DEV_W, DEV_H, kBGRA_8888_SkColorType, kPremul_SkAlphaType),
465 SkImageInfo::Make(DEV_W, DEV_H, kRGB_888x_SkColorType, kOpaque_SkAlphaType),
466 SkImageInfo::Make(DEV_W, DEV_H, kAlpha_8_SkColorType, kPremul_SkAlphaType),
467 };
468 for (const auto& ii : kImageInfos) {
469 for (auto& origin : {kBottomLeft_GrSurfaceOrigin, kTopLeft_GrSurfaceOrigin}) {
470 sk_sp<SkSurface> surface(SkSurface::MakeRenderTarget(
471 ctxInfo.grContext(), SkBudgeted::kNo, ii, 0, origin, nullptr));
472 if (!surface) {
473 continue;
474 }
475 test_readpixels(reporter, surface, ii, kLast_BitmapInit);
476 }
kkinnunen15302832015-12-01 04:35:26 -0800477 }
478}
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000479
Robert Phillipse78b7252017-04-06 07:59:41 -0400480static void test_readpixels_texture(skiatest::Reporter* reporter,
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400481 sk_sp<GrSurfaceContext> sContext,
482 const SkImageInfo& surfaceInfo) {
kkinnunen15302832015-12-01 04:35:26 -0800483 for (size_t rect = 0; rect < SK_ARRAY_COUNT(gReadPixelsTestRects); ++rect) {
484 const SkIRect& srcRect = gReadPixelsTestRects[rect];
bsalomon9d02b262016-02-01 12:49:30 -0800485 for (BitmapInit bmi = kFirstBitmapInit; bmi <= kLast_BitmapInit; bmi = nextBMI(bmi)) {
kkinnunen15302832015-12-01 04:35:26 -0800486 for (size_t c = 0; c < SK_ARRAY_COUNT(gReadPixelsConfigs); ++c) {
487 SkBitmap bmp;
488 init_bitmap(&bmp, srcRect, bmi,
489 gReadPixelsConfigs[c].fColorType, gReadPixelsConfigs[c].fAlphaType);
490
491 // if the bitmap has pixels allocated before the readPixels,
492 // note that and fill them with pattern
493 bool startsWithPixels = !bmp.isNull();
494 // Try doing the read directly from a non-renderable texture
495 if (startsWithPixels) {
496 fill_dst_bmp_with_init_data(&bmp);
kkinnunen15302832015-12-01 04:35:26 -0800497 uint32_t flags = 0;
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400498 // TODO: These two hacks can go away when the surface context knows the alpha
499 // type.
500 // Tell the read to perform an unpremul step since it doesn't know alpha type.
kkinnunen15302832015-12-01 04:35:26 -0800501 if (gReadPixelsConfigs[c].fAlphaType == kUnpremul_SkAlphaType) {
Robert Phillipse78b7252017-04-06 07:59:41 -0400502 flags = GrContextPriv::kUnpremul_PixelOpsFlag;
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000503 }
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400504 // The surface context doesn't know that the src is opaque. We don't support
505 // converting non-opaque data to opaque during a read.
506 if (bmp.alphaType() == kOpaque_SkAlphaType &&
507 surfaceInfo.alphaType() != kOpaque_SkAlphaType) {
508 continue;
509 }
Robert Phillipsbab2dbb2017-04-17 07:43:27 -0400510 bool success = sContext->readPixels(bmp.info(), bmp.getPixels(),
511 bmp.rowBytes(),
512 srcRect.fLeft, srcRect.fTop, flags);
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400513 auto expectSuccess =
514 read_should_succeed(srcRect, bmp.info(), surfaceInfo, true);
515 REPORTER_ASSERT(
516 reporter, check_success_expectation(expectSuccess, success),
517 "Read succeed=%d unexpectedly, src ct/at: %d/%d, dst ct/at: %d/%d",
518 success, surfaceInfo.colorType(), surfaceInfo.alphaType(),
519 bmp.info().colorType(), bmp.info().alphaType());
520 if (success) {
521 check_read(reporter, bmp, srcRect.fLeft, srcRect.fTop, success, true,
522 surfaceInfo.alphaType());
523 }
bsalomon@google.comc6980972011-11-02 19:57:21 +0000524 }
525 }
526 }
527 }
528}
Robert Phillipsbab2dbb2017-04-17 07:43:27 -0400529
egdaniel88e8aef2016-06-27 14:34:55 -0700530DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ReadPixels_Texture, reporter, ctxInfo) {
Robert Phillipseb4f1862017-06-08 16:38:25 -0400531 if (ctxInfo.type() == sk_gpu_test::GrContextFactory::kANGLE_D3D9_ES2_ContextType ||
532 ctxInfo.type() == sk_gpu_test::GrContextFactory::kANGLE_GL_ES2_ContextType ||
533 ctxInfo.type() == sk_gpu_test::GrContextFactory::kANGLE_D3D11_ES2_ContextType) {
534 // skbug.com/6742 ReadPixels_Texture & _Gpu don't work with ANGLE ES2 configs
535 return;
536 }
537
Robert Phillipsbab2dbb2017-04-17 07:43:27 -0400538 GrContext* context = ctxInfo.grContext();
Robert Phillipsbab2dbb2017-04-17 07:43:27 -0400539 SkBitmap bmp = make_src_bitmap();
Robert Phillipsbab2dbb2017-04-17 07:43:27 -0400540
kkinnunen15302832015-12-01 04:35:26 -0800541 // On the GPU we will also try reading back from a non-renderable texture.
Brian Salomon8b1fb742016-11-03 15:21:06 -0400542 for (auto origin : {kBottomLeft_GrSurfaceOrigin, kTopLeft_GrSurfaceOrigin}) {
Brian Salomon58389b92018-03-07 13:01:25 -0500543 for (auto isRT : {false, true}) {
544 sk_sp<GrTextureProxy> proxy = sk_gpu_test::MakeTextureProxyFromData(
545 context, isRT, DEV_W, DEV_H, bmp.colorType(), origin, bmp.getPixels(),
546 bmp.rowBytes());
Robert Phillipsbab2dbb2017-04-17 07:43:27 -0400547 sk_sp<GrSurfaceContext> sContext = context->contextPriv().makeWrappedSurfaceContext(
Robert Phillipsd5f9cdd2018-01-31 09:29:48 -0500548 std::move(proxy));
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400549 auto info = SkImageInfo::Make(DEV_W, DEV_H, kN32_SkColorType, kPremul_SkAlphaType);
550 test_readpixels_texture(reporter, std::move(sContext), info);
Brian Salomon8b1fb742016-11-03 15:21:06 -0400551 }
kkinnunen15302832015-12-01 04:35:26 -0800552 }
553}
Matt Sarett8572d852017-02-14 11:21:02 -0500554
555///////////////////////////////////////////////////////////////////////////////////////////////////
556
557static const uint32_t kNumPixels = 5;
558
559// The five reference pixels are: red, green, blue, white, black.
560// Five is an interesting number to test because we'll exercise a full 4-wide SIMD vector
561// plus a tail pixel.
562static const uint32_t rgba[kNumPixels] = {
563 0xFF0000FF, 0xFF00FF00, 0xFFFF0000, 0xFFFFFFFF, 0xFF000000
564};
565static const uint32_t bgra[kNumPixels] = {
566 0xFFFF0000, 0xFF00FF00, 0xFF0000FF, 0xFFFFFFFF, 0xFF000000
567};
568static const uint16_t rgb565[kNumPixels] = {
569 SK_R16_MASK_IN_PLACE, SK_G16_MASK_IN_PLACE, SK_B16_MASK_IN_PLACE, 0xFFFF, 0x0
570};
571
572static const uint16_t rgba4444[kNumPixels] = { 0xF00F, 0x0F0F, 0x00FF, 0xFFFF, 0x000F };
573
574static const uint64_t kRed = (uint64_t) SK_Half1 << 0;
575static const uint64_t kGreen = (uint64_t) SK_Half1 << 16;
576static const uint64_t kBlue = (uint64_t) SK_Half1 << 32;
577static const uint64_t kAlpha = (uint64_t) SK_Half1 << 48;
578static const uint64_t f16[kNumPixels] = {
579 kAlpha | kRed, kAlpha | kGreen, kAlpha | kBlue, kAlpha | kBlue | kGreen | kRed, kAlpha
580};
581
Matt Sarett8572d852017-02-14 11:21:02 -0500582static const uint8_t alpha8[kNumPixels] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
583static const uint8_t gray8[kNumPixels] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
584
585static const void* five_reference_pixels(SkColorType colorType) {
586 switch (colorType) {
587 case kUnknown_SkColorType:
588 return nullptr;
589 case kAlpha_8_SkColorType:
590 return alpha8;
591 case kRGB_565_SkColorType:
592 return rgb565;
593 case kARGB_4444_SkColorType:
594 return rgba4444;
595 case kRGBA_8888_SkColorType:
596 return rgba;
597 case kBGRA_8888_SkColorType:
598 return bgra;
Matt Sarett8572d852017-02-14 11:21:02 -0500599 case kGray_8_SkColorType:
600 return gray8;
601 case kRGBA_F16_SkColorType:
602 return f16;
Mike Reed304a07c2017-07-12 15:10:28 -0400603 default:
604 return nullptr; // remove me when kIndex_8 is removed from the enum
Matt Sarett8572d852017-02-14 11:21:02 -0500605 }
606
607 SkASSERT(false);
608 return nullptr;
609}
610
611static void test_conversion(skiatest::Reporter* r, const SkImageInfo& dstInfo,
612 const SkImageInfo& srcInfo) {
Brian Osmane1adc3a2018-06-04 09:21:17 -0400613 if (!SkImageInfoIsValid(srcInfo)) {
Matt Sarett8572d852017-02-14 11:21:02 -0500614 return;
615 }
616
Matt Sarett8572d852017-02-14 11:21:02 -0500617 const void* srcPixels = five_reference_pixels(srcInfo.colorType());
Mike Reed304a07c2017-07-12 15:10:28 -0400618 SkPixmap srcPixmap(srcInfo, srcPixels, srcInfo.minRowBytes());
Matt Sarett8572d852017-02-14 11:21:02 -0500619 sk_sp<SkImage> src = SkImage::MakeFromRaster(srcPixmap, nullptr, nullptr);
620 REPORTER_ASSERT(r, src);
621
622 // Enough space for 5 pixels when color type is F16, more than enough space in other cases.
623 uint64_t dstPixels[kNumPixels];
Mike Reed304a07c2017-07-12 15:10:28 -0400624 SkPixmap dstPixmap(dstInfo, dstPixels, dstInfo.minRowBytes());
Matt Sarett8572d852017-02-14 11:21:02 -0500625 bool success = src->readPixels(dstPixmap, 0, 0);
626 REPORTER_ASSERT(r, success == SkImageInfoValidConversion(dstInfo, srcInfo));
627
628 if (success) {
629 if (kGray_8_SkColorType == srcInfo.colorType() &&
630 kGray_8_SkColorType != dstInfo.colorType())
631 {
632 // This conversion is legal, but we won't get the "reference" pixels since we cannot
633 // represent colors in kGray8.
634 return;
635 }
636
637 REPORTER_ASSERT(r, 0 == memcmp(dstPixels, five_reference_pixels(dstInfo.colorType()),
638 kNumPixels * SkColorTypeBytesPerPixel(dstInfo.colorType())));
639
640 }
641}
642
643DEF_TEST(ReadPixels_ValidConversion, reporter) {
644 const SkColorType kColorTypes[] = {
645 kUnknown_SkColorType,
646 kAlpha_8_SkColorType,
647 kRGB_565_SkColorType,
648 kARGB_4444_SkColorType,
649 kRGBA_8888_SkColorType,
650 kBGRA_8888_SkColorType,
Matt Sarett8572d852017-02-14 11:21:02 -0500651 kGray_8_SkColorType,
652 kRGBA_F16_SkColorType,
653 };
654
655 const SkAlphaType kAlphaTypes[] = {
656 kUnknown_SkAlphaType,
657 kOpaque_SkAlphaType,
658 kPremul_SkAlphaType,
659 kUnpremul_SkAlphaType,
660 };
661
662 const sk_sp<SkColorSpace> kColorSpaces[] = {
663 nullptr,
664 SkColorSpace::MakeSRGB(),
665 };
666
667 for (SkColorType dstCT : kColorTypes) {
668 for (SkAlphaType dstAT: kAlphaTypes) {
669 for (sk_sp<SkColorSpace> dstCS : kColorSpaces) {
670 for (SkColorType srcCT : kColorTypes) {
671 for (SkAlphaType srcAT: kAlphaTypes) {
672 for (sk_sp<SkColorSpace> srcCS : kColorSpaces) {
673 if (kRGBA_F16_SkColorType == dstCT && dstCS) {
Brian Osman36703d92017-12-12 14:09:31 -0500674 dstCS = dstCS->makeLinearGamma();
Matt Sarett8572d852017-02-14 11:21:02 -0500675 }
676
677 if (kRGBA_F16_SkColorType == srcCT && srcCS) {
Brian Osman36703d92017-12-12 14:09:31 -0500678 srcCS = srcCS->makeLinearGamma();
Matt Sarett8572d852017-02-14 11:21:02 -0500679 }
680
681 test_conversion(reporter,
682 SkImageInfo::Make(kNumPixels, 1, dstCT, dstAT, dstCS),
683 SkImageInfo::Make(kNumPixels, 1, srcCT, srcAT, srcCS));
684 }
685 }
686 }
687 }
688 }
689 }
690}