blob: 6b6778d1ac39fdd8bb9075315d2afc575d224986 [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
bsalomon@google.comc6980972011-11-02 19:57:21 +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"
bsalomon@google.comc6980972011-11-02 19:57:21 +000011#include "SkRegion.h"
reed52d9ac62014-06-30 09:05:34 -070012#include "SkSurface.h"
tfarina@chromium.org4ee16bf2014-01-10 22:08:27 +000013#include "Test.h"
tfarina@chromium.org4ee16bf2014-01-10 22:08:27 +000014
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000015#if SK_SUPPORT_GPU
kkinnunen15302832015-12-01 04:35:26 -080016#include "GrContext.h"
bsalomone8d21e82015-07-16 08:23:13 -070017#include "SkGr.h"
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000018#endif
bsalomon@google.comc6980972011-11-02 19:57:21 +000019
kkinnunen15302832015-12-01 04:35:26 -080020#include <initializer_list>
21
bsalomon@google.comc6980972011-11-02 19:57:21 +000022static const int DEV_W = 100, DEV_H = 100;
23static const SkIRect DEV_RECT = SkIRect::MakeWH(DEV_W, DEV_H);
rmistry@google.comd6176b02012-08-23 18:14:13 +000024static const SkRect DEV_RECT_S = SkRect::MakeWH(DEV_W * SK_Scalar1,
bsalomon@google.comc6980972011-11-02 19:57:21 +000025 DEV_H * SK_Scalar1);
26
bsalomone8d21e82015-07-16 08:23:13 -070027static SkPMColor get_src_color(int x, int y) {
bsalomon@google.comc6980972011-11-02 19:57:21 +000028 SkASSERT(x >= 0 && x < DEV_W);
29 SkASSERT(y >= 0 && y < DEV_H);
bsalomon@google.com6850eab2011-11-03 20:29:47 +000030
31 U8CPU r = x;
32 U8CPU g = y;
33 U8CPU b = 0xc;
34
35 U8CPU a = 0xff;
bsalomon@google.comc4364992011-11-07 15:54:49 +000036 switch ((x+y) % 5) {
bsalomon@google.com6850eab2011-11-03 20:29:47 +000037 case 0:
38 a = 0xff;
39 break;
40 case 1:
41 a = 0x80;
42 break;
43 case 2:
44 a = 0xCC;
45 break;
46 case 4:
47 a = 0x01;
48 break;
49 case 3:
50 a = 0x00;
51 break;
52 }
53 return SkPremultiplyARGBInline(a, r, g, b);
bsalomon@google.comc6980972011-11-02 19:57:21 +000054}
halcanary9d524f22016-03-29 09:03:52 -070055
bsalomone8d21e82015-07-16 08:23:13 -070056static SkPMColor get_dst_bmp_init_color(int x, int y, int w) {
bsalomon@google.comc6980972011-11-02 19:57:21 +000057 int n = y * w + x;
bsalomon@google.com6850eab2011-11-03 20:29:47 +000058
bsalomon@google.comc6980972011-11-02 19:57:21 +000059 U8CPU b = n & 0xff;
60 U8CPU g = (n >> 8) & 0xff;
61 U8CPU r = (n >> 16) & 0xff;
62 return SkPackARGB32(0xff, r, g , b);
63}
64
bsalomone8d21e82015-07-16 08:23:13 -070065static SkPMColor convert_to_pmcolor(SkColorType ct, SkAlphaType at, const uint32_t* addr,
66 bool* doUnpremul) {
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +000067 *doUnpremul = (kUnpremul_SkAlphaType == at);
68
69 const uint8_t* c = reinterpret_cast<const uint8_t*>(addr);
bsalomon@google.com6850eab2011-11-03 20:29:47 +000070 U8CPU a,r,g,b;
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +000071 switch (ct) {
72 case kBGRA_8888_SkColorType:
bsalomon@google.com6850eab2011-11-03 20:29:47 +000073 b = static_cast<U8CPU>(c[0]);
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +000074 g = static_cast<U8CPU>(c[1]);
75 r = static_cast<U8CPU>(c[2]);
bsalomon@google.com6850eab2011-11-03 20:29:47 +000076 a = static_cast<U8CPU>(c[3]);
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +000077 break;
78 case kRGBA_8888_SkColorType:
bsalomon@google.com6850eab2011-11-03 20:29:47 +000079 r = static_cast<U8CPU>(c[0]);
80 g = static_cast<U8CPU>(c[1]);
81 b = static_cast<U8CPU>(c[2]);
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +000082 a = static_cast<U8CPU>(c[3]);
bsalomon@google.com6850eab2011-11-03 20:29:47 +000083 break;
bsalomon@google.comccaa0022012-09-25 19:55:07 +000084 default:
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +000085 SkDEBUGFAIL("Unexpected colortype");
bsalomon@google.comccaa0022012-09-25 19:55:07 +000086 return 0;
bsalomon@google.com6850eab2011-11-03 20:29:47 +000087 }
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +000088
89 if (*doUnpremul) {
bsalomon@google.com6850eab2011-11-03 20:29:47 +000090 r = SkMulDiv255Ceiling(r, a);
91 g = SkMulDiv255Ceiling(g, a);
92 b = SkMulDiv255Ceiling(b, a);
93 }
94 return SkPackARGB32(a, r, g, b);
95}
96
bsalomone8d21e82015-07-16 08:23:13 -070097static SkBitmap make_src_bitmap() {
bsalomon@google.comc6980972011-11-02 19:57:21 +000098 static SkBitmap bmp;
99 if (bmp.isNull()) {
reed84825042014-09-02 12:50:45 -0700100 bmp.allocN32Pixels(DEV_W, DEV_H);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000101 intptr_t pixels = reinterpret_cast<intptr_t>(bmp.getPixels());
102 for (int y = 0; y < DEV_H; ++y) {
103 for (int x = 0; x < DEV_W; ++x) {
104 SkPMColor* pixel = reinterpret_cast<SkPMColor*>(pixels + y * bmp.rowBytes() + x * bmp.bytesPerPixel());
bsalomone8d21e82015-07-16 08:23:13 -0700105 *pixel = get_src_color(x, y);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000106 }
107 }
108 }
bsalomone8d21e82015-07-16 08:23:13 -0700109 return bmp;
110}
111
112static void fill_src_canvas(SkCanvas* canvas) {
bsalomon@google.comc6980972011-11-02 19:57:21 +0000113 canvas->save();
114 canvas->setMatrix(SkMatrix::I());
115 canvas->clipRect(DEV_RECT_S, SkRegion::kReplace_Op);
116 SkPaint paint;
117 paint.setXfermodeMode(SkXfermode::kSrc_Mode);
bsalomone8d21e82015-07-16 08:23:13 -0700118 canvas->drawBitmap(make_src_bitmap(), 0, 0, &paint);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000119 canvas->restore();
120}
rmistry@google.comd6176b02012-08-23 18:14:13 +0000121
bsalomone8d21e82015-07-16 08:23:13 -0700122#if SK_SUPPORT_GPU
123static void fill_src_texture(GrTexture* texture) {
124 SkBitmap bmp = make_src_bitmap();
125 bmp.lockPixels();
126 texture->writePixels(0, 0, DEV_W, DEV_H, kSkia8888_GrPixelConfig, bmp.getPixels(),
127 bmp.rowBytes());
128 bmp.unlockPixels();
129}
130#endif
131
132static void fill_dst_bmp_with_init_data(SkBitmap* bitmap) {
bsalomon@google.comc6980972011-11-02 19:57:21 +0000133 SkASSERT(bitmap->lockPixelsAreWritable());
134 SkAutoLockPixels alp(*bitmap);
135 int w = bitmap->width();
136 int h = bitmap->height();
137 intptr_t pixels = reinterpret_cast<intptr_t>(bitmap->getPixels());
138 for (int y = 0; y < h; ++y) {
139 for (int x = 0; x < w; ++x) {
140 SkPMColor* pixel = reinterpret_cast<SkPMColor*>(pixels + y * bitmap->rowBytes() + x * bitmap->bytesPerPixel());
bsalomone8d21e82015-07-16 08:23:13 -0700141 *pixel = get_dst_bmp_init_color(x, y, w);
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.
bsalomone8d21e82015-07-16 08:23:13 -0700169static bool check_read(skiatest::Reporter* reporter,
170 const SkBitmap& bitmap,
171 int x, int y,
172 bool checkCanvasPixels,
173 bool checkBitmapPixels) {
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000174 SkASSERT(4 == bitmap.bytesPerPixel());
bsalomon@google.comc6980972011-11-02 19:57:21 +0000175 SkASSERT(!bitmap.isNull());
bsalomon@google.com6850eab2011-11-03 20:29:47 +0000176 SkASSERT(checkCanvasPixels || checkBitmapPixels);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000177
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000178 const SkColorType ct = bitmap.colorType();
179 const SkAlphaType at = bitmap.alphaType();
180
bsalomon@google.comc6980972011-11-02 19:57:21 +0000181 int bw = bitmap.width();
182 int bh = bitmap.height();
183
184 SkIRect srcRect = SkIRect::MakeXYWH(x, y, bw, bh);
185 SkIRect clippedSrcRect = DEV_RECT;
186 if (!clippedSrcRect.intersect(srcRect)) {
187 clippedSrcRect.setEmpty();
188 }
bsalomon@google.comc6980972011-11-02 19:57:21 +0000189 SkAutoLockPixels alp(bitmap);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000190 for (int by = 0; by < bh; ++by) {
191 for (int bx = 0; bx < bw; ++bx) {
192 int devx = bx + srcRect.fLeft;
193 int devy = by + srcRect.fTop;
rmistry@google.comd6176b02012-08-23 18:14:13 +0000194
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000195 const uint32_t* pixel = bitmap.getAddr32(bx, by);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000196
197 if (clippedSrcRect.contains(devx, devy)) {
bsalomon@google.com6850eab2011-11-03 20:29:47 +0000198 if (checkCanvasPixels) {
bsalomone8d21e82015-07-16 08:23:13 -0700199 SkPMColor canvasPixel = get_src_color(devx, devy);
bsalomon@google.comc4364992011-11-07 15:54:49 +0000200 bool didPremul;
bsalomone8d21e82015-07-16 08:23:13 -0700201 SkPMColor pmPixel = convert_to_pmcolor(ct, at, pixel, &didPremul);
bsalomon39826022015-07-23 08:07:21 -0700202 if (!check_read_pixel(pmPixel, canvasPixel, didPremul)) {
egdaniel88e8aef2016-06-27 14:34:55 -0700203 ERRORF(reporter, "Expected readback pixel (%d, %d) value 0x%08x, got 0x%08x. "
204 "Readback was unpremul: %d", bx, by, canvasPixel, pmPixel, didPremul);
bsalomon@google.com72f3dca2012-08-17 13:32:06 +0000205 return false;
bsalomon@google.com6850eab2011-11-03 20:29:47 +0000206 }
bsalomon@google.comc6980972011-11-02 19:57:21 +0000207 }
bsalomon@google.com6850eab2011-11-03 20:29:47 +0000208 } else if (checkBitmapPixels) {
bsalomon39826022015-07-23 08:07:21 -0700209 uint32_t origDstPixel = get_dst_bmp_init_color(bx, by, bw);
210 if (origDstPixel != *pixel) {
211 ERRORF(reporter, "Expected clipped out area of readback to be unchanged. "
212 "Expected 0x%08x, got 0x%08x", origDstPixel, *pixel);
bsalomon@google.com72f3dca2012-08-17 13:32:06 +0000213 return false;
bsalomon@google.comc6980972011-11-02 19:57:21 +0000214 }
215 }
216 }
217 }
bsalomon@google.com72f3dca2012-08-17 13:32:06 +0000218 return true;
bsalomon@google.comc6980972011-11-02 19:57:21 +0000219}
220
221enum BitmapInit {
222 kFirstBitmapInit = 0,
rmistry@google.comd6176b02012-08-23 18:14:13 +0000223
bsalomon@google.comc6980972011-11-02 19:57:21 +0000224 kNoPixels_BitmapInit = kFirstBitmapInit,
225 kTight_BitmapInit,
226 kRowBytes_BitmapInit,
bsalomon9d02b262016-02-01 12:49:30 -0800227 kRowBytesOdd_BitmapInit,
rmistry@google.comd6176b02012-08-23 18:14:13 +0000228
bsalomon9d02b262016-02-01 12:49:30 -0800229 kLastAligned_BitmapInit = kRowBytes_BitmapInit,
Brian Salomona64afd62016-02-01 16:44:22 -0500230
231#if 0 // THIS CAUSES ERRORS ON WINDOWS AND SOME ANDROID DEVICES
bsalomon9d02b262016-02-01 12:49:30 -0800232 kLast_BitmapInit = kRowBytesOdd_BitmapInit
Brian Salomona64afd62016-02-01 16:44:22 -0500233#else
234 kLast_BitmapInit = kLastAligned_BitmapInit
235#endif
bsalomon@google.comc6980972011-11-02 19:57:21 +0000236};
237
commit-bot@chromium.orgddf94cf2013-10-12 17:25:17 +0000238static BitmapInit nextBMI(BitmapInit bmi) {
bsalomon@google.comc6980972011-11-02 19:57:21 +0000239 int x = bmi;
240 return static_cast<BitmapInit>(++x);
241}
242
commit-bot@chromium.orga713f9c2014-03-17 21:31:26 +0000243static void init_bitmap(SkBitmap* bitmap, const SkIRect& rect, BitmapInit init, SkColorType ct,
244 SkAlphaType at) {
245 SkImageInfo info = SkImageInfo::Make(rect.width(), rect.height(), ct, at);
commit-bot@chromium.orgfa9e5fa2014-02-13 22:00:04 +0000246 size_t rowBytes = 0;
bsalomon@google.comc6980972011-11-02 19:57:21 +0000247 bool alloc = true;
248 switch (init) {
249 case kNoPixels_BitmapInit:
250 alloc = false;
251 case kTight_BitmapInit:
252 break;
253 case kRowBytes_BitmapInit:
commit-bot@chromium.orgfa9e5fa2014-02-13 22:00:04 +0000254 rowBytes = (info.width() + 16) * sizeof(SkPMColor);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000255 break;
bsalomon9d02b262016-02-01 12:49:30 -0800256 case kRowBytesOdd_BitmapInit:
257 rowBytes = (info.width() * sizeof(SkPMColor)) + 3;
258 break;
bsalomon@google.comc6980972011-11-02 19:57:21 +0000259 default:
260 SkASSERT(0);
261 break;
262 }
skia.committer@gmail.com02d6f542014-02-14 03:02:05 +0000263
bsalomon@google.comc6980972011-11-02 19:57:21 +0000264 if (alloc) {
bsalomon9d02b262016-02-01 12:49:30 -0800265 bitmap->allocPixels(info, rowBytes);
commit-bot@chromium.orgfa9e5fa2014-02-13 22:00:04 +0000266 } else {
commit-bot@chromium.orga3264e52014-05-30 13:26:10 +0000267 bitmap->setInfo(info, rowBytes);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000268 }
269}
270
kkinnunen15302832015-12-01 04:35:26 -0800271static const struct {
272 SkColorType fColorType;
273 SkAlphaType fAlphaType;
274} gReadPixelsConfigs[] = {
275 { kRGBA_8888_SkColorType, kPremul_SkAlphaType },
276 { kRGBA_8888_SkColorType, kUnpremul_SkAlphaType },
277 { kBGRA_8888_SkColorType, kPremul_SkAlphaType },
278 { kBGRA_8888_SkColorType, kUnpremul_SkAlphaType },
279};
280const SkIRect gReadPixelsTestRects[] = {
281 // entire thing
282 DEV_RECT,
283 // larger on all sides
284 SkIRect::MakeLTRB(-10, -10, DEV_W + 10, DEV_H + 10),
285 // fully contained
286 SkIRect::MakeLTRB(DEV_W / 4, DEV_H / 4, 3 * DEV_W / 4, 3 * DEV_H / 4),
287 // outside top left
288 SkIRect::MakeLTRB(-10, -10, -1, -1),
289 // touching top left corner
290 SkIRect::MakeLTRB(-10, -10, 0, 0),
291 // overlapping top left corner
292 SkIRect::MakeLTRB(-10, -10, DEV_W / 4, DEV_H / 4),
293 // overlapping top left and top right corners
294 SkIRect::MakeLTRB(-10, -10, DEV_W + 10, DEV_H / 4),
295 // touching entire top edge
296 SkIRect::MakeLTRB(-10, -10, DEV_W + 10, 0),
297 // overlapping top right corner
298 SkIRect::MakeLTRB(3 * DEV_W / 4, -10, DEV_W + 10, DEV_H / 4),
299 // contained in x, overlapping top edge
300 SkIRect::MakeLTRB(DEV_W / 4, -10, 3 * DEV_W / 4, DEV_H / 4),
301 // outside top right corner
302 SkIRect::MakeLTRB(DEV_W + 1, -10, DEV_W + 10, -1),
303 // touching top right corner
304 SkIRect::MakeLTRB(DEV_W, -10, DEV_W + 10, 0),
305 // overlapping top left and bottom left corners
306 SkIRect::MakeLTRB(-10, -10, DEV_W / 4, DEV_H + 10),
307 // touching entire left edge
308 SkIRect::MakeLTRB(-10, -10, 0, DEV_H + 10),
309 // overlapping bottom left corner
310 SkIRect::MakeLTRB(-10, 3 * DEV_H / 4, DEV_W / 4, DEV_H + 10),
311 // contained in y, overlapping left edge
312 SkIRect::MakeLTRB(-10, DEV_H / 4, DEV_W / 4, 3 * DEV_H / 4),
313 // outside bottom left corner
314 SkIRect::MakeLTRB(-10, DEV_H + 1, -1, DEV_H + 10),
315 // touching bottom left corner
316 SkIRect::MakeLTRB(-10, DEV_H, 0, DEV_H + 10),
317 // overlapping bottom left and bottom right corners
318 SkIRect::MakeLTRB(-10, 3 * DEV_H / 4, DEV_W + 10, DEV_H + 10),
319 // touching entire left edge
320 SkIRect::MakeLTRB(0, DEV_H, DEV_W, DEV_H + 10),
321 // overlapping bottom right corner
322 SkIRect::MakeLTRB(3 * DEV_W / 4, 3 * DEV_H / 4, DEV_W + 10, DEV_H + 10),
323 // overlapping top right and bottom right corners
324 SkIRect::MakeLTRB(3 * DEV_W / 4, -10, DEV_W + 10, DEV_H + 10),
325};
bsalomon@google.comc6980972011-11-02 19:57:21 +0000326
reede8f30622016-03-23 18:59:25 -0700327static void test_readpixels(skiatest::Reporter* reporter, const sk_sp<SkSurface>& surface,
bsalomon9d02b262016-02-01 12:49:30 -0800328 BitmapInit lastBitmapInit) {
kkinnunen15302832015-12-01 04:35:26 -0800329 SkCanvas* canvas = surface->getCanvas();
330 fill_src_canvas(canvas);
331 for (size_t rect = 0; rect < SK_ARRAY_COUNT(gReadPixelsTestRects); ++rect) {
332 const SkIRect& srcRect = gReadPixelsTestRects[rect];
bsalomon9d02b262016-02-01 12:49:30 -0800333 for (BitmapInit bmi = kFirstBitmapInit; bmi <= lastBitmapInit; bmi = nextBMI(bmi)) {
kkinnunen15302832015-12-01 04:35:26 -0800334 for (size_t c = 0; c < SK_ARRAY_COUNT(gReadPixelsConfigs); ++c) {
335 SkBitmap bmp;
336 init_bitmap(&bmp, srcRect, bmi,
337 gReadPixelsConfigs[c].fColorType, gReadPixelsConfigs[c].fAlphaType);
bsalomone8d21e82015-07-16 08:23:13 -0700338
kkinnunen15302832015-12-01 04:35:26 -0800339 // if the bitmap has pixels allocated before the readPixels,
340 // note that and fill them with pattern
341 bool startsWithPixels = !bmp.isNull();
342 if (startsWithPixels) {
343 fill_dst_bmp_with_init_data(&bmp);
344 }
345 uint32_t idBefore = surface->generationID();
346 bool success = canvas->readPixels(&bmp, srcRect.fLeft, srcRect.fTop);
347 uint32_t idAfter = surface->generationID();
348
349 // we expect to succeed when the read isn't fully clipped
350 // out.
351 bool expectSuccess = SkIRect::Intersects(srcRect, DEV_RECT);
352 // determine whether we expected the read to succeed.
353 REPORTER_ASSERT(reporter, success == expectSuccess);
354 // read pixels should never change the gen id
355 REPORTER_ASSERT(reporter, idBefore == idAfter);
356
357 if (success || startsWithPixels) {
358 check_read(reporter, bmp, srcRect.fLeft, srcRect.fTop,
359 success, startsWithPixels);
360 } else {
361 // if we had no pixels beforehand and the readPixels
362 // failed then our bitmap should still not have pixels
363 REPORTER_ASSERT(reporter, bmp.isNull());
364 }
365 }
366 // check the old webkit version of readPixels that clips the
367 // bitmap size
368 SkBitmap wkbmp;
369 bool success = canvas->readPixels(srcRect, &wkbmp);
370 SkIRect clippedRect = DEV_RECT;
371 if (clippedRect.intersect(srcRect)) {
372 REPORTER_ASSERT(reporter, success);
373 REPORTER_ASSERT(reporter, kN32_SkColorType == wkbmp.colorType());
374 REPORTER_ASSERT(reporter, kPremul_SkAlphaType == wkbmp.alphaType());
375 check_read(reporter, wkbmp, clippedRect.fLeft,
376 clippedRect.fTop, true, false);
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000377 } else {
kkinnunen15302832015-12-01 04:35:26 -0800378 REPORTER_ASSERT(reporter, !success);
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000379 }
kkinnunen15302832015-12-01 04:35:26 -0800380 }
381 }
382}
383DEF_TEST(ReadPixels, reporter) {
384 const SkImageInfo info = SkImageInfo::MakeN32Premul(DEV_W, DEV_H);
reede8f30622016-03-23 18:59:25 -0700385 auto surface(SkSurface::MakeRaster(info));
bsalomon9d02b262016-02-01 12:49:30 -0800386 // SW readback fails a premul check when reading back to an unaligned rowbytes.
387 test_readpixels(reporter, surface, kLastAligned_BitmapInit);
kkinnunen15302832015-12-01 04:35:26 -0800388}
bsalomone8d21e82015-07-16 08:23:13 -0700389#if SK_SUPPORT_GPU
egdaniel88e8aef2016-06-27 14:34:55 -0700390DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ReadPixels_Gpu, reporter, ctxInfo) {
kkinnunen15302832015-12-01 04:35:26 -0800391 for (auto& origin : {kBottomLeft_GrSurfaceOrigin, kTopLeft_GrSurfaceOrigin}) {
392 GrSurfaceDesc desc;
393 desc.fFlags = kRenderTarget_GrSurfaceFlag;
394 desc.fWidth = DEV_W;
395 desc.fHeight = DEV_H;
396 desc.fConfig = kSkia8888_GrPixelConfig;
397 desc.fOrigin = origin;
398 SkAutoTUnref<GrTexture> surfaceTexture(
bsalomon8b7451a2016-05-11 06:33:06 -0700399 ctxInfo.grContext()->textureProvider()->createTexture(desc, SkBudgeted::kNo));
reede8f30622016-03-23 18:59:25 -0700400 auto surface(SkSurface::MakeRenderTargetDirect(surfaceTexture->asRenderTarget()));
kkinnunen15302832015-12-01 04:35:26 -0800401 desc.fFlags = kNone_GrSurfaceFlags;
bsalomon9d02b262016-02-01 12:49:30 -0800402 test_readpixels(reporter, surface, kLast_BitmapInit);
kkinnunen15302832015-12-01 04:35:26 -0800403 }
404}
bsalomone8d21e82015-07-16 08:23:13 -0700405#endif
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000406
bsalomone8d21e82015-07-16 08:23:13 -0700407#if SK_SUPPORT_GPU
kkinnunen15302832015-12-01 04:35:26 -0800408static void test_readpixels_texture(skiatest::Reporter* reporter, GrTexture* texture) {
409 fill_src_texture(texture);
410 for (size_t rect = 0; rect < SK_ARRAY_COUNT(gReadPixelsTestRects); ++rect) {
411 const SkIRect& srcRect = gReadPixelsTestRects[rect];
bsalomon9d02b262016-02-01 12:49:30 -0800412 for (BitmapInit bmi = kFirstBitmapInit; bmi <= kLast_BitmapInit; bmi = nextBMI(bmi)) {
kkinnunen15302832015-12-01 04:35:26 -0800413 for (size_t c = 0; c < SK_ARRAY_COUNT(gReadPixelsConfigs); ++c) {
414 SkBitmap bmp;
415 init_bitmap(&bmp, srcRect, bmi,
416 gReadPixelsConfigs[c].fColorType, gReadPixelsConfigs[c].fAlphaType);
417
418 // if the bitmap has pixels allocated before the readPixels,
419 // note that and fill them with pattern
420 bool startsWithPixels = !bmp.isNull();
421 // Try doing the read directly from a non-renderable texture
422 if (startsWithPixels) {
423 fill_dst_bmp_with_init_data(&bmp);
424 GrPixelConfig dstConfig =
425 SkImageInfo2GrPixelConfig(gReadPixelsConfigs[c].fColorType,
426 gReadPixelsConfigs[c].fAlphaType,
brianosmanb109b8c2016-06-16 13:03:24 -0700427 nullptr,
brianosmana6359362016-03-21 06:55:37 -0700428 *texture->getContext()->caps());
kkinnunen15302832015-12-01 04:35:26 -0800429 uint32_t flags = 0;
430 if (gReadPixelsConfigs[c].fAlphaType == kUnpremul_SkAlphaType) {
431 flags = GrContext::kUnpremul_PixelOpsFlag;
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000432 }
kkinnunen15302832015-12-01 04:35:26 -0800433 bmp.lockPixels();
434 bool success = texture->readPixels(srcRect.fLeft, srcRect.fTop, bmp.width(),
435 bmp.height(), dstConfig, bmp.getPixels(),
436 bmp.rowBytes(), flags);
437 bmp.unlockPixels();
438 check_read(reporter, bmp, srcRect.fLeft, srcRect.fTop,
439 success, true);
bsalomon@google.comc6980972011-11-02 19:57:21 +0000440 }
441 }
442 }
443 }
444}
egdaniel88e8aef2016-06-27 14:34:55 -0700445DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ReadPixels_Texture, reporter, ctxInfo) {
kkinnunen15302832015-12-01 04:35:26 -0800446 // On the GPU we will also try reading back from a non-renderable texture.
447 for (auto& origin : {kBottomLeft_GrSurfaceOrigin, kTopLeft_GrSurfaceOrigin}) {
448 SkAutoTUnref<GrTexture> texture;
449 GrSurfaceDesc desc;
450 desc.fFlags = kRenderTarget_GrSurfaceFlag;
451 desc.fWidth = DEV_W;
452 desc.fHeight = DEV_H;
453 desc.fConfig = kSkia8888_GrPixelConfig;
454 desc.fOrigin = origin;
455 desc.fFlags = kNone_GrSurfaceFlags;
bsalomon8b7451a2016-05-11 06:33:06 -0700456 texture.reset(ctxInfo.grContext()->textureProvider()->createTexture(desc,
457 SkBudgeted::kNo));
kkinnunen15302832015-12-01 04:35:26 -0800458 test_readpixels_texture(reporter, texture);
459 }
460}
461#endif