2011-11-02 19:57:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2011 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2018-03-07 18:01:25 +00:00
|
|
|
#include <initializer_list>
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkCanvas.h"
|
|
|
|
#include "include/core/SkSurface.h"
|
2019-05-10 18:24:50 +00:00
|
|
|
#include "include/gpu/GrContext.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/private/SkColorData.h"
|
|
|
|
#include "include/private/SkHalf.h"
|
|
|
|
#include "include/private/SkImageInfoPriv.h"
|
2019-09-26 20:57:09 +00:00
|
|
|
#include "include/utils/SkNWayCanvas.h"
|
2019-05-10 18:24:50 +00:00
|
|
|
#include "src/core/SkAutoPixmapStorage.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "src/core/SkMathPriv.h"
|
|
|
|
#include "src/gpu/GrContextPriv.h"
|
2019-09-30 16:15:30 +00:00
|
|
|
#include "src/gpu/GrImageInfo.h"
|
2019-05-10 18:24:50 +00:00
|
|
|
#include "tests/Test.h"
|
2019-07-15 16:30:44 +00:00
|
|
|
#include "tests/TestUtils.h"
|
2019-09-26 20:57:09 +00:00
|
|
|
#include "tools/ToolUtils.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "tools/gpu/GrContextFactory.h"
|
|
|
|
#include "tools/gpu/ProxyUtils.h"
|
2011-11-02 19:57:21 +00:00
|
|
|
|
|
|
|
static const int DEV_W = 100, DEV_H = 100;
|
|
|
|
static const SkIRect DEV_RECT = SkIRect::MakeWH(DEV_W, DEV_H);
|
2012-08-23 18:14:13 +00:00
|
|
|
static const SkRect DEV_RECT_S = SkRect::MakeWH(DEV_W * SK_Scalar1,
|
2011-11-02 19:57:21 +00:00
|
|
|
DEV_H * SK_Scalar1);
|
|
|
|
|
2015-07-16 15:23:13 +00:00
|
|
|
static SkPMColor get_src_color(int x, int y) {
|
2011-11-02 19:57:21 +00:00
|
|
|
SkASSERT(x >= 0 && x < DEV_W);
|
|
|
|
SkASSERT(y >= 0 && y < DEV_H);
|
2011-11-03 20:29:47 +00:00
|
|
|
|
|
|
|
U8CPU r = x;
|
|
|
|
U8CPU g = y;
|
|
|
|
U8CPU b = 0xc;
|
|
|
|
|
|
|
|
U8CPU a = 0xff;
|
2011-11-07 15:54:49 +00:00
|
|
|
switch ((x+y) % 5) {
|
2011-11-03 20:29:47 +00:00
|
|
|
case 0:
|
|
|
|
a = 0xff;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
a = 0x80;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
a = 0xCC;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
a = 0x01;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
a = 0x00;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return SkPremultiplyARGBInline(a, r, g, b);
|
2011-11-02 19:57:21 +00:00
|
|
|
}
|
2016-03-29 16:03:52 +00:00
|
|
|
|
2015-07-16 15:23:13 +00:00
|
|
|
static SkPMColor get_dst_bmp_init_color(int x, int y, int w) {
|
2011-11-02 19:57:21 +00:00
|
|
|
int n = y * w + x;
|
2011-11-03 20:29:47 +00:00
|
|
|
|
2011-11-02 19:57:21 +00:00
|
|
|
U8CPU b = n & 0xff;
|
|
|
|
U8CPU g = (n >> 8) & 0xff;
|
|
|
|
U8CPU r = (n >> 16) & 0xff;
|
|
|
|
return SkPackARGB32(0xff, r, g , b);
|
|
|
|
}
|
|
|
|
|
2018-03-22 14:01:16 +00:00
|
|
|
// TODO: Make this consider both ATs
|
2015-07-16 15:23:13 +00:00
|
|
|
static SkPMColor convert_to_pmcolor(SkColorType ct, SkAlphaType at, const uint32_t* addr,
|
|
|
|
bool* doUnpremul) {
|
2014-03-17 21:31:26 +00:00
|
|
|
*doUnpremul = (kUnpremul_SkAlphaType == at);
|
|
|
|
|
|
|
|
const uint8_t* c = reinterpret_cast<const uint8_t*>(addr);
|
2011-11-03 20:29:47 +00:00
|
|
|
U8CPU a,r,g,b;
|
2014-03-17 21:31:26 +00:00
|
|
|
switch (ct) {
|
|
|
|
case kBGRA_8888_SkColorType:
|
2011-11-03 20:29:47 +00:00
|
|
|
b = static_cast<U8CPU>(c[0]);
|
2014-03-17 21:31:26 +00:00
|
|
|
g = static_cast<U8CPU>(c[1]);
|
|
|
|
r = static_cast<U8CPU>(c[2]);
|
2011-11-03 20:29:47 +00:00
|
|
|
a = static_cast<U8CPU>(c[3]);
|
2014-03-17 21:31:26 +00:00
|
|
|
break;
|
2018-03-22 14:01:16 +00:00
|
|
|
case kRGB_888x_SkColorType: // fallthrough
|
2014-03-17 21:31:26 +00:00
|
|
|
case kRGBA_8888_SkColorType:
|
2011-11-03 20:29:47 +00:00
|
|
|
r = static_cast<U8CPU>(c[0]);
|
|
|
|
g = static_cast<U8CPU>(c[1]);
|
|
|
|
b = static_cast<U8CPU>(c[2]);
|
2018-03-22 14:01:16 +00:00
|
|
|
// We set this even when for kRGB_888x because our caller will validate that it is 0xff.
|
2014-03-17 21:31:26 +00:00
|
|
|
a = static_cast<U8CPU>(c[3]);
|
2011-11-03 20:29:47 +00:00
|
|
|
break;
|
2012-09-25 19:55:07 +00:00
|
|
|
default:
|
2014-03-17 21:31:26 +00:00
|
|
|
SkDEBUGFAIL("Unexpected colortype");
|
2012-09-25 19:55:07 +00:00
|
|
|
return 0;
|
2011-11-03 20:29:47 +00:00
|
|
|
}
|
2014-03-17 21:31:26 +00:00
|
|
|
|
|
|
|
if (*doUnpremul) {
|
2011-11-03 20:29:47 +00:00
|
|
|
r = SkMulDiv255Ceiling(r, a);
|
|
|
|
g = SkMulDiv255Ceiling(g, a);
|
|
|
|
b = SkMulDiv255Ceiling(b, a);
|
|
|
|
}
|
|
|
|
return SkPackARGB32(a, r, g, b);
|
|
|
|
}
|
|
|
|
|
2015-07-16 15:23:13 +00:00
|
|
|
static SkBitmap make_src_bitmap() {
|
2011-11-02 19:57:21 +00:00
|
|
|
static SkBitmap bmp;
|
|
|
|
if (bmp.isNull()) {
|
2014-09-02 19:50:45 +00:00
|
|
|
bmp.allocN32Pixels(DEV_W, DEV_H);
|
2011-11-02 19:57:21 +00:00
|
|
|
intptr_t pixels = reinterpret_cast<intptr_t>(bmp.getPixels());
|
|
|
|
for (int y = 0; y < DEV_H; ++y) {
|
|
|
|
for (int x = 0; x < DEV_W; ++x) {
|
|
|
|
SkPMColor* pixel = reinterpret_cast<SkPMColor*>(pixels + y * bmp.rowBytes() + x * bmp.bytesPerPixel());
|
2015-07-16 15:23:13 +00:00
|
|
|
*pixel = get_src_color(x, y);
|
2011-11-02 19:57:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-16 15:23:13 +00:00
|
|
|
return bmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void fill_src_canvas(SkCanvas* canvas) {
|
2011-11-02 19:57:21 +00:00
|
|
|
canvas->save();
|
|
|
|
canvas->setMatrix(SkMatrix::I());
|
2016-12-09 14:00:50 +00:00
|
|
|
canvas->clipRect(DEV_RECT_S, kReplace_SkClipOp);
|
2011-11-02 19:57:21 +00:00
|
|
|
SkPaint paint;
|
2016-10-06 00:33:02 +00:00
|
|
|
paint.setBlendMode(SkBlendMode::kSrc);
|
2015-07-16 15:23:13 +00:00
|
|
|
canvas->drawBitmap(make_src_bitmap(), 0, 0, &paint);
|
2011-11-02 19:57:21 +00:00
|
|
|
canvas->restore();
|
|
|
|
}
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2015-07-16 15:23:13 +00:00
|
|
|
static void fill_dst_bmp_with_init_data(SkBitmap* bitmap) {
|
2011-11-02 19:57:21 +00:00
|
|
|
int w = bitmap->width();
|
|
|
|
int h = bitmap->height();
|
|
|
|
intptr_t pixels = reinterpret_cast<intptr_t>(bitmap->getPixels());
|
|
|
|
for (int y = 0; y < h; ++y) {
|
|
|
|
for (int x = 0; x < w; ++x) {
|
2016-10-11 21:29:12 +00:00
|
|
|
SkPMColor initColor = get_dst_bmp_init_color(x, y, w);
|
|
|
|
if (kAlpha_8_SkColorType == bitmap->colorType()) {
|
|
|
|
uint8_t* alpha = reinterpret_cast<uint8_t*>(pixels + y * bitmap->rowBytes() + x);
|
|
|
|
*alpha = SkGetPackedA32(initColor);
|
|
|
|
} else {
|
|
|
|
SkPMColor* pixel = reinterpret_cast<SkPMColor*>(pixels + y * bitmap->rowBytes() + x * bitmap->bytesPerPixel());
|
|
|
|
*pixel = initColor;
|
|
|
|
}
|
2011-11-02 19:57:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-16 15:23:13 +00:00
|
|
|
static bool check_read_pixel(SkPMColor a, SkPMColor b, bool didPremulConversion) {
|
2011-11-07 15:54:49 +00:00
|
|
|
if (!didPremulConversion) {
|
|
|
|
return a == b;
|
|
|
|
}
|
|
|
|
int32_t aA = static_cast<int32_t>(SkGetPackedA32(a));
|
|
|
|
int32_t aR = static_cast<int32_t>(SkGetPackedR32(a));
|
|
|
|
int32_t aG = static_cast<int32_t>(SkGetPackedG32(a));
|
|
|
|
int32_t aB = SkGetPackedB32(a);
|
|
|
|
|
|
|
|
int32_t bA = static_cast<int32_t>(SkGetPackedA32(b));
|
|
|
|
int32_t bR = static_cast<int32_t>(SkGetPackedR32(b));
|
|
|
|
int32_t bG = static_cast<int32_t>(SkGetPackedG32(b));
|
|
|
|
int32_t bB = static_cast<int32_t>(SkGetPackedB32(b));
|
|
|
|
|
|
|
|
return aA == bA &&
|
|
|
|
SkAbs32(aR - bR) <= 1 &&
|
|
|
|
SkAbs32(aG - bG) <= 1 &&
|
|
|
|
SkAbs32(aB - bB) <= 1;
|
|
|
|
}
|
|
|
|
|
2011-11-02 19:57:21 +00:00
|
|
|
// checks the bitmap contains correct pixels after the readPixels
|
|
|
|
// if the bitmap was prefilled with pixels it checks that these weren't
|
|
|
|
// overwritten in the area outside the readPixels.
|
2018-03-22 14:01:16 +00:00
|
|
|
static bool check_read(skiatest::Reporter* reporter, const SkBitmap& bitmap, int x, int y,
|
|
|
|
bool checkSurfacePixels, bool checkBitmapPixels,
|
let's like, chill out about all these rules, man
There's really no reason to prevent any of these conversions;
they all have somewhat reasonable behavior:
- converting between grey in different color spaces
should probably work just fine
- we'll convert color to gray using a fixed set of
luminance coefficients, but that's better than failing
- we'll invent {r,g,b} = {0,0,0} if we convert alpha
to something with color
- converting to opaque formats without thinking about
premul/unpremul is probably fine, better than just
not working at all
- a missing src color space can always be assumed to be sRGB
Updates to ReadPixelsTest:
- skip more supported test cases in test_conversion(),
each with a TODO
- conversions from non-opaque to opaque should now work
- conversion from A8 to non-A8 should sometimes now
work on GPUs, and the test needed a little bit of
a tweak to not expect A8 to carry around color somehow.
Updates to SRGBReadWritePixelsTest:
- writing untagged pixels shouldn't fail anymore;
instead, it should behave like it was tagged sRGB
Change-Id: I19e78f3a6c89ef74fbcbc985d3fbd77fa984b1c2
Reviewed-on: https://skia-review.googlesource.com/147815
Commit-Queue: Mike Klein <mtklein@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
2018-08-17 18:09:55 +00:00
|
|
|
SkImageInfo surfaceInfo) {
|
2018-03-22 14:01:16 +00:00
|
|
|
SkAlphaType bmpAT = bitmap.alphaType();
|
|
|
|
SkColorType bmpCT = bitmap.colorType();
|
2011-11-02 19:57:21 +00:00
|
|
|
SkASSERT(!bitmap.isNull());
|
2018-03-22 14:01:16 +00:00
|
|
|
SkASSERT(checkSurfacePixels || checkBitmapPixels);
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2011-11-02 19:57:21 +00:00
|
|
|
int bw = bitmap.width();
|
|
|
|
int bh = bitmap.height();
|
|
|
|
|
|
|
|
SkIRect srcRect = SkIRect::MakeXYWH(x, y, bw, bh);
|
|
|
|
SkIRect clippedSrcRect = DEV_RECT;
|
|
|
|
if (!clippedSrcRect.intersect(srcRect)) {
|
|
|
|
clippedSrcRect.setEmpty();
|
|
|
|
}
|
2018-03-22 14:01:16 +00:00
|
|
|
if (kAlpha_8_SkColorType == bmpCT) {
|
2016-10-11 21:29:12 +00:00
|
|
|
for (int by = 0; by < bh; ++by) {
|
|
|
|
for (int bx = 0; bx < bw; ++bx) {
|
|
|
|
int devx = bx + srcRect.fLeft;
|
|
|
|
int devy = by + srcRect.fTop;
|
|
|
|
const uint8_t* alpha = bitmap.getAddr8(bx, by);
|
|
|
|
|
|
|
|
if (clippedSrcRect.contains(devx, devy)) {
|
2018-03-22 14:01:16 +00:00
|
|
|
if (checkSurfacePixels) {
|
let's like, chill out about all these rules, man
There's really no reason to prevent any of these conversions;
they all have somewhat reasonable behavior:
- converting between grey in different color spaces
should probably work just fine
- we'll convert color to gray using a fixed set of
luminance coefficients, but that's better than failing
- we'll invent {r,g,b} = {0,0,0} if we convert alpha
to something with color
- converting to opaque formats without thinking about
premul/unpremul is probably fine, better than just
not working at all
- a missing src color space can always be assumed to be sRGB
Updates to ReadPixelsTest:
- skip more supported test cases in test_conversion(),
each with a TODO
- conversions from non-opaque to opaque should now work
- conversion from A8 to non-A8 should sometimes now
work on GPUs, and the test needed a little bit of
a tweak to not expect A8 to carry around color somehow.
Updates to SRGBReadWritePixelsTest:
- writing untagged pixels shouldn't fail anymore;
instead, it should behave like it was tagged sRGB
Change-Id: I19e78f3a6c89ef74fbcbc985d3fbd77fa984b1c2
Reviewed-on: https://skia-review.googlesource.com/147815
Commit-Queue: Mike Klein <mtklein@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
2018-08-17 18:09:55 +00:00
|
|
|
uint8_t surfaceAlpha = (surfaceInfo.alphaType() == kOpaque_SkAlphaType)
|
2018-03-22 14:01:16 +00:00
|
|
|
? 0xFF
|
|
|
|
: SkGetPackedA32(get_src_color(devx, devy));
|
|
|
|
if (surfaceAlpha != *alpha) {
|
|
|
|
ERRORF(reporter,
|
|
|
|
"Expected readback alpha (%d, %d) value 0x%02x, got 0x%02x. ",
|
|
|
|
bx, by, surfaceAlpha, *alpha);
|
2016-10-11 21:29:12 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (checkBitmapPixels) {
|
|
|
|
uint32_t origDstAlpha = SkGetPackedA32(get_dst_bmp_init_color(bx, by, bw));
|
|
|
|
if (origDstAlpha != *alpha) {
|
|
|
|
ERRORF(reporter, "Expected clipped out area of readback to be unchanged. "
|
|
|
|
"Expected 0x%02x, got 0x%02x", origDstAlpha, *alpha);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2011-11-02 19:57:21 +00:00
|
|
|
for (int by = 0; by < bh; ++by) {
|
|
|
|
for (int bx = 0; bx < bw; ++bx) {
|
|
|
|
int devx = bx + srcRect.fLeft;
|
|
|
|
int devy = by + srcRect.fTop;
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2014-03-17 21:31:26 +00:00
|
|
|
const uint32_t* pixel = bitmap.getAddr32(bx, by);
|
2011-11-02 19:57:21 +00:00
|
|
|
|
|
|
|
if (clippedSrcRect.contains(devx, devy)) {
|
2018-03-22 14:01:16 +00:00
|
|
|
if (checkSurfacePixels) {
|
|
|
|
SkPMColor surfacePMColor = get_src_color(devx, devy);
|
let's like, chill out about all these rules, man
There's really no reason to prevent any of these conversions;
they all have somewhat reasonable behavior:
- converting between grey in different color spaces
should probably work just fine
- we'll convert color to gray using a fixed set of
luminance coefficients, but that's better than failing
- we'll invent {r,g,b} = {0,0,0} if we convert alpha
to something with color
- converting to opaque formats without thinking about
premul/unpremul is probably fine, better than just
not working at all
- a missing src color space can always be assumed to be sRGB
Updates to ReadPixelsTest:
- skip more supported test cases in test_conversion(),
each with a TODO
- conversions from non-opaque to opaque should now work
- conversion from A8 to non-A8 should sometimes now
work on GPUs, and the test needed a little bit of
a tweak to not expect A8 to carry around color somehow.
Updates to SRGBReadWritePixelsTest:
- writing untagged pixels shouldn't fail anymore;
instead, it should behave like it was tagged sRGB
Change-Id: I19e78f3a6c89ef74fbcbc985d3fbd77fa984b1c2
Reviewed-on: https://skia-review.googlesource.com/147815
Commit-Queue: Mike Klein <mtklein@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
2018-08-17 18:09:55 +00:00
|
|
|
if (SkColorTypeIsAlphaOnly(surfaceInfo.colorType())) {
|
|
|
|
surfacePMColor &= 0xFF000000;
|
|
|
|
}
|
|
|
|
if (kOpaque_SkAlphaType == surfaceInfo.alphaType() || kOpaque_SkAlphaType == bmpAT) {
|
2018-03-22 14:01:16 +00:00
|
|
|
surfacePMColor |= 0xFF000000;
|
|
|
|
}
|
2011-11-07 15:54:49 +00:00
|
|
|
bool didPremul;
|
2018-03-22 14:01:16 +00:00
|
|
|
SkPMColor pmPixel = convert_to_pmcolor(bmpCT, bmpAT, pixel, &didPremul);
|
|
|
|
if (!check_read_pixel(pmPixel, surfacePMColor, didPremul)) {
|
|
|
|
ERRORF(reporter,
|
|
|
|
"Expected readback pixel (%d, %d) value 0x%08x, got 0x%08x. "
|
|
|
|
"Readback was unpremul: %d",
|
|
|
|
bx, by, surfacePMColor, pmPixel, didPremul);
|
2012-08-17 13:32:06 +00:00
|
|
|
return false;
|
2011-11-03 20:29:47 +00:00
|
|
|
}
|
2011-11-02 19:57:21 +00:00
|
|
|
}
|
2011-11-03 20:29:47 +00:00
|
|
|
} else if (checkBitmapPixels) {
|
2015-07-23 15:07:21 +00:00
|
|
|
uint32_t origDstPixel = get_dst_bmp_init_color(bx, by, bw);
|
|
|
|
if (origDstPixel != *pixel) {
|
|
|
|
ERRORF(reporter, "Expected clipped out area of readback to be unchanged. "
|
|
|
|
"Expected 0x%08x, got 0x%08x", origDstPixel, *pixel);
|
2012-08-17 13:32:06 +00:00
|
|
|
return false;
|
2011-11-02 19:57:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-08-17 13:32:06 +00:00
|
|
|
return true;
|
2011-11-02 19:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
enum BitmapInit {
|
|
|
|
kFirstBitmapInit = 0,
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2017-04-17 14:53:29 +00:00
|
|
|
kTight_BitmapInit = kFirstBitmapInit,
|
2011-11-02 19:57:21 +00:00
|
|
|
kRowBytes_BitmapInit,
|
2016-02-01 20:49:30 +00:00
|
|
|
kRowBytesOdd_BitmapInit,
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2016-02-01 20:49:30 +00:00
|
|
|
kLastAligned_BitmapInit = kRowBytes_BitmapInit,
|
2016-02-01 21:44:22 +00:00
|
|
|
|
|
|
|
#if 0 // THIS CAUSES ERRORS ON WINDOWS AND SOME ANDROID DEVICES
|
2016-02-01 20:49:30 +00:00
|
|
|
kLast_BitmapInit = kRowBytesOdd_BitmapInit
|
2016-02-01 21:44:22 +00:00
|
|
|
#else
|
|
|
|
kLast_BitmapInit = kLastAligned_BitmapInit
|
|
|
|
#endif
|
2011-11-02 19:57:21 +00:00
|
|
|
};
|
|
|
|
|
2013-10-12 17:25:17 +00:00
|
|
|
static BitmapInit nextBMI(BitmapInit bmi) {
|
2011-11-02 19:57:21 +00:00
|
|
|
int x = bmi;
|
|
|
|
return static_cast<BitmapInit>(++x);
|
|
|
|
}
|
|
|
|
|
2014-03-17 21:31:26 +00:00
|
|
|
static void init_bitmap(SkBitmap* bitmap, const SkIRect& rect, BitmapInit init, SkColorType ct,
|
|
|
|
SkAlphaType at) {
|
|
|
|
SkImageInfo info = SkImageInfo::Make(rect.width(), rect.height(), ct, at);
|
2014-02-13 22:00:04 +00:00
|
|
|
size_t rowBytes = 0;
|
2011-11-02 19:57:21 +00:00
|
|
|
switch (init) {
|
|
|
|
case kTight_BitmapInit:
|
|
|
|
break;
|
|
|
|
case kRowBytes_BitmapInit:
|
2016-10-11 21:29:12 +00:00
|
|
|
rowBytes = SkAlign4((info.width() + 16) * info.bytesPerPixel());
|
2011-11-02 19:57:21 +00:00
|
|
|
break;
|
2016-02-01 20:49:30 +00:00
|
|
|
case kRowBytesOdd_BitmapInit:
|
2016-10-11 21:29:12 +00:00
|
|
|
rowBytes = SkAlign4(info.width() * info.bytesPerPixel()) + 3;
|
2016-02-01 20:49:30 +00:00
|
|
|
break;
|
2011-11-02 19:57:21 +00:00
|
|
|
default:
|
|
|
|
SkASSERT(0);
|
|
|
|
break;
|
|
|
|
}
|
2017-04-17 14:53:29 +00:00
|
|
|
bitmap->allocPixels(info, rowBytes);
|
2011-11-02 19:57:21 +00:00
|
|
|
}
|
|
|
|
|
2015-12-01 12:35:26 +00:00
|
|
|
static const struct {
|
|
|
|
SkColorType fColorType;
|
|
|
|
SkAlphaType fAlphaType;
|
|
|
|
} gReadPixelsConfigs[] = {
|
2018-03-22 14:01:16 +00:00
|
|
|
{kRGBA_8888_SkColorType, kPremul_SkAlphaType},
|
|
|
|
{kRGBA_8888_SkColorType, kUnpremul_SkAlphaType},
|
|
|
|
{kRGB_888x_SkColorType, kOpaque_SkAlphaType},
|
|
|
|
{kBGRA_8888_SkColorType, kPremul_SkAlphaType},
|
|
|
|
{kBGRA_8888_SkColorType, kUnpremul_SkAlphaType},
|
|
|
|
{kAlpha_8_SkColorType, kPremul_SkAlphaType},
|
2015-12-01 12:35:26 +00:00
|
|
|
};
|
|
|
|
const SkIRect gReadPixelsTestRects[] = {
|
|
|
|
// entire thing
|
|
|
|
DEV_RECT,
|
|
|
|
// larger on all sides
|
|
|
|
SkIRect::MakeLTRB(-10, -10, DEV_W + 10, DEV_H + 10),
|
|
|
|
// fully contained
|
|
|
|
SkIRect::MakeLTRB(DEV_W / 4, DEV_H / 4, 3 * DEV_W / 4, 3 * DEV_H / 4),
|
|
|
|
// outside top left
|
|
|
|
SkIRect::MakeLTRB(-10, -10, -1, -1),
|
|
|
|
// touching top left corner
|
|
|
|
SkIRect::MakeLTRB(-10, -10, 0, 0),
|
|
|
|
// overlapping top left corner
|
|
|
|
SkIRect::MakeLTRB(-10, -10, DEV_W / 4, DEV_H / 4),
|
|
|
|
// overlapping top left and top right corners
|
|
|
|
SkIRect::MakeLTRB(-10, -10, DEV_W + 10, DEV_H / 4),
|
|
|
|
// touching entire top edge
|
|
|
|
SkIRect::MakeLTRB(-10, -10, DEV_W + 10, 0),
|
|
|
|
// overlapping top right corner
|
|
|
|
SkIRect::MakeLTRB(3 * DEV_W / 4, -10, DEV_W + 10, DEV_H / 4),
|
|
|
|
// contained in x, overlapping top edge
|
|
|
|
SkIRect::MakeLTRB(DEV_W / 4, -10, 3 * DEV_W / 4, DEV_H / 4),
|
|
|
|
// outside top right corner
|
|
|
|
SkIRect::MakeLTRB(DEV_W + 1, -10, DEV_W + 10, -1),
|
|
|
|
// touching top right corner
|
|
|
|
SkIRect::MakeLTRB(DEV_W, -10, DEV_W + 10, 0),
|
|
|
|
// overlapping top left and bottom left corners
|
|
|
|
SkIRect::MakeLTRB(-10, -10, DEV_W / 4, DEV_H + 10),
|
|
|
|
// touching entire left edge
|
|
|
|
SkIRect::MakeLTRB(-10, -10, 0, DEV_H + 10),
|
|
|
|
// overlapping bottom left corner
|
|
|
|
SkIRect::MakeLTRB(-10, 3 * DEV_H / 4, DEV_W / 4, DEV_H + 10),
|
|
|
|
// contained in y, overlapping left edge
|
|
|
|
SkIRect::MakeLTRB(-10, DEV_H / 4, DEV_W / 4, 3 * DEV_H / 4),
|
|
|
|
// outside bottom left corner
|
|
|
|
SkIRect::MakeLTRB(-10, DEV_H + 1, -1, DEV_H + 10),
|
|
|
|
// touching bottom left corner
|
|
|
|
SkIRect::MakeLTRB(-10, DEV_H, 0, DEV_H + 10),
|
|
|
|
// overlapping bottom left and bottom right corners
|
|
|
|
SkIRect::MakeLTRB(-10, 3 * DEV_H / 4, DEV_W + 10, DEV_H + 10),
|
|
|
|
// touching entire left edge
|
|
|
|
SkIRect::MakeLTRB(0, DEV_H, DEV_W, DEV_H + 10),
|
|
|
|
// overlapping bottom right corner
|
|
|
|
SkIRect::MakeLTRB(3 * DEV_W / 4, 3 * DEV_H / 4, DEV_W + 10, DEV_H + 10),
|
|
|
|
// overlapping top right and bottom right corners
|
|
|
|
SkIRect::MakeLTRB(3 * DEV_W / 4, -10, DEV_W + 10, DEV_H + 10),
|
|
|
|
};
|
2015-07-16 15:23:13 +00:00
|
|
|
|
2019-07-01 17:05:28 +00:00
|
|
|
bool read_should_succeed(const SkIRect& srcRect, const SkImageInfo& dstInfo,
|
|
|
|
const SkImageInfo& srcInfo) {
|
|
|
|
return SkIRect::Intersects(srcRect, DEV_RECT) && SkImageInfoValidConversion(dstInfo, srcInfo);
|
2018-03-22 14:01:16 +00:00
|
|
|
}
|
|
|
|
|
2016-03-24 01:59:25 +00:00
|
|
|
static void test_readpixels(skiatest::Reporter* reporter, const sk_sp<SkSurface>& surface,
|
2018-03-22 14:01:16 +00:00
|
|
|
const SkImageInfo& surfaceInfo, BitmapInit lastBitmapInit) {
|
2015-12-01 12:35:26 +00:00
|
|
|
SkCanvas* canvas = surface->getCanvas();
|
|
|
|
fill_src_canvas(canvas);
|
|
|
|
for (size_t rect = 0; rect < SK_ARRAY_COUNT(gReadPixelsTestRects); ++rect) {
|
|
|
|
const SkIRect& srcRect = gReadPixelsTestRects[rect];
|
2016-02-01 20:49:30 +00:00
|
|
|
for (BitmapInit bmi = kFirstBitmapInit; bmi <= lastBitmapInit; bmi = nextBMI(bmi)) {
|
2015-12-01 12:35:26 +00:00
|
|
|
for (size_t c = 0; c < SK_ARRAY_COUNT(gReadPixelsConfigs); ++c) {
|
|
|
|
SkBitmap bmp;
|
|
|
|
init_bitmap(&bmp, srcRect, bmi,
|
|
|
|
gReadPixelsConfigs[c].fColorType, gReadPixelsConfigs[c].fAlphaType);
|
|
|
|
|
|
|
|
// if the bitmap has pixels allocated before the readPixels,
|
|
|
|
// note that and fill them with pattern
|
|
|
|
bool startsWithPixels = !bmp.isNull();
|
|
|
|
if (startsWithPixels) {
|
|
|
|
fill_dst_bmp_with_init_data(&bmp);
|
2013-02-04 16:13:32 +00:00
|
|
|
}
|
2015-12-01 12:35:26 +00:00
|
|
|
uint32_t idBefore = surface->generationID();
|
2017-07-21 18:24:29 +00:00
|
|
|
bool success = surface->readPixels(bmp, srcRect.fLeft, srcRect.fTop);
|
2015-12-01 12:35:26 +00:00
|
|
|
uint32_t idAfter = surface->generationID();
|
|
|
|
|
2018-03-22 14:01:16 +00:00
|
|
|
// we expect to succeed when the read isn't fully clipped out and the infos are
|
|
|
|
// compatible.
|
2019-07-01 17:05:28 +00:00
|
|
|
bool expectSuccess = read_should_succeed(srcRect, bmp.info(), surfaceInfo);
|
2015-12-01 12:35:26 +00:00
|
|
|
// determine whether we expected the read to succeed.
|
2019-07-01 17:05:28 +00:00
|
|
|
REPORTER_ASSERT(reporter, expectSuccess == success,
|
2018-03-22 14:01:16 +00:00
|
|
|
"Read succeed=%d unexpectedly, src ct/at: %d/%d, dst ct/at: %d/%d",
|
|
|
|
success, surfaceInfo.colorType(), surfaceInfo.alphaType(),
|
|
|
|
bmp.info().colorType(), bmp.info().alphaType());
|
2015-12-01 12:35:26 +00:00
|
|
|
// read pixels should never change the gen id
|
|
|
|
REPORTER_ASSERT(reporter, idBefore == idAfter);
|
|
|
|
|
|
|
|
if (success || startsWithPixels) {
|
2018-03-22 14:01:16 +00:00
|
|
|
check_read(reporter, bmp, srcRect.fLeft, srcRect.fTop, success,
|
let's like, chill out about all these rules, man
There's really no reason to prevent any of these conversions;
they all have somewhat reasonable behavior:
- converting between grey in different color spaces
should probably work just fine
- we'll convert color to gray using a fixed set of
luminance coefficients, but that's better than failing
- we'll invent {r,g,b} = {0,0,0} if we convert alpha
to something with color
- converting to opaque formats without thinking about
premul/unpremul is probably fine, better than just
not working at all
- a missing src color space can always be assumed to be sRGB
Updates to ReadPixelsTest:
- skip more supported test cases in test_conversion(),
each with a TODO
- conversions from non-opaque to opaque should now work
- conversion from A8 to non-A8 should sometimes now
work on GPUs, and the test needed a little bit of
a tweak to not expect A8 to carry around color somehow.
Updates to SRGBReadWritePixelsTest:
- writing untagged pixels shouldn't fail anymore;
instead, it should behave like it was tagged sRGB
Change-Id: I19e78f3a6c89ef74fbcbc985d3fbd77fa984b1c2
Reviewed-on: https://skia-review.googlesource.com/147815
Commit-Queue: Mike Klein <mtklein@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
2018-08-17 18:09:55 +00:00
|
|
|
startsWithPixels, surfaceInfo);
|
2015-12-01 12:35:26 +00:00
|
|
|
} else {
|
|
|
|
// if we had no pixels beforehand and the readPixels
|
|
|
|
// failed then our bitmap should still not have pixels
|
|
|
|
REPORTER_ASSERT(reporter, bmp.isNull());
|
2013-02-04 16:13:32 +00:00
|
|
|
}
|
|
|
|
}
|
2015-12-01 12:35:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-03-22 14:01:16 +00:00
|
|
|
|
2015-12-01 12:35:26 +00:00
|
|
|
DEF_TEST(ReadPixels, reporter) {
|
|
|
|
const SkImageInfo info = SkImageInfo::MakeN32Premul(DEV_W, DEV_H);
|
2016-03-24 01:59:25 +00:00
|
|
|
auto surface(SkSurface::MakeRaster(info));
|
2016-02-01 20:49:30 +00:00
|
|
|
// SW readback fails a premul check when reading back to an unaligned rowbytes.
|
2018-03-22 14:01:16 +00:00
|
|
|
test_readpixels(reporter, surface, info, kLastAligned_BitmapInit);
|
2015-12-01 12:35:26 +00:00
|
|
|
}
|
2016-06-27 21:34:55 +00:00
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ReadPixels_Gpu, reporter, ctxInfo) {
|
2018-03-22 14:01:16 +00:00
|
|
|
static const SkImageInfo kImageInfos[] = {
|
|
|
|
SkImageInfo::Make(DEV_W, DEV_H, kRGBA_8888_SkColorType, kPremul_SkAlphaType),
|
|
|
|
SkImageInfo::Make(DEV_W, DEV_H, kBGRA_8888_SkColorType, kPremul_SkAlphaType),
|
|
|
|
SkImageInfo::Make(DEV_W, DEV_H, kRGB_888x_SkColorType, kOpaque_SkAlphaType),
|
|
|
|
SkImageInfo::Make(DEV_W, DEV_H, kAlpha_8_SkColorType, kPremul_SkAlphaType),
|
|
|
|
};
|
|
|
|
for (const auto& ii : kImageInfos) {
|
|
|
|
for (auto& origin : {kBottomLeft_GrSurfaceOrigin, kTopLeft_GrSurfaceOrigin}) {
|
|
|
|
sk_sp<SkSurface> surface(SkSurface::MakeRenderTarget(
|
|
|
|
ctxInfo.grContext(), SkBudgeted::kNo, ii, 0, origin, nullptr));
|
|
|
|
if (!surface) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
test_readpixels(reporter, surface, ii, kLast_BitmapInit);
|
|
|
|
}
|
2015-12-01 12:35:26 +00:00
|
|
|
}
|
|
|
|
}
|
2011-11-02 19:57:21 +00:00
|
|
|
|
2017-04-06 11:59:41 +00:00
|
|
|
static void test_readpixels_texture(skiatest::Reporter* reporter,
|
2019-08-21 13:38:10 +00:00
|
|
|
std::unique_ptr<GrSurfaceContext> sContext,
|
2018-03-22 14:01:16 +00:00
|
|
|
const SkImageInfo& surfaceInfo) {
|
2015-12-01 12:35:26 +00:00
|
|
|
for (size_t rect = 0; rect < SK_ARRAY_COUNT(gReadPixelsTestRects); ++rect) {
|
|
|
|
const SkIRect& srcRect = gReadPixelsTestRects[rect];
|
2016-02-01 20:49:30 +00:00
|
|
|
for (BitmapInit bmi = kFirstBitmapInit; bmi <= kLast_BitmapInit; bmi = nextBMI(bmi)) {
|
2015-12-01 12:35:26 +00:00
|
|
|
for (size_t c = 0; c < SK_ARRAY_COUNT(gReadPixelsConfigs); ++c) {
|
|
|
|
SkBitmap bmp;
|
|
|
|
init_bitmap(&bmp, srcRect, bmi,
|
|
|
|
gReadPixelsConfigs[c].fColorType, gReadPixelsConfigs[c].fAlphaType);
|
|
|
|
|
|
|
|
// if the bitmap has pixels allocated before the readPixels,
|
|
|
|
// note that and fill them with pattern
|
|
|
|
bool startsWithPixels = !bmp.isNull();
|
|
|
|
// Try doing the read directly from a non-renderable texture
|
|
|
|
if (startsWithPixels) {
|
|
|
|
fill_dst_bmp_with_init_data(&bmp);
|
2017-04-17 11:43:27 +00:00
|
|
|
bool success = sContext->readPixels(bmp.info(), bmp.getPixels(),
|
2019-07-01 17:05:28 +00:00
|
|
|
bmp.rowBytes(), {srcRect.fLeft, srcRect.fTop});
|
|
|
|
auto expectSuccess = read_should_succeed(srcRect, bmp.info(), surfaceInfo);
|
2018-03-22 14:01:16 +00:00
|
|
|
REPORTER_ASSERT(
|
2019-07-01 17:05:28 +00:00
|
|
|
reporter, expectSuccess == success,
|
2018-03-22 14:01:16 +00:00
|
|
|
"Read succeed=%d unexpectedly, src ct/at: %d/%d, dst ct/at: %d/%d",
|
|
|
|
success, surfaceInfo.colorType(), surfaceInfo.alphaType(),
|
|
|
|
bmp.info().colorType(), bmp.info().alphaType());
|
|
|
|
if (success) {
|
|
|
|
check_read(reporter, bmp, srcRect.fLeft, srcRect.fTop, success, true,
|
let's like, chill out about all these rules, man
There's really no reason to prevent any of these conversions;
they all have somewhat reasonable behavior:
- converting between grey in different color spaces
should probably work just fine
- we'll convert color to gray using a fixed set of
luminance coefficients, but that's better than failing
- we'll invent {r,g,b} = {0,0,0} if we convert alpha
to something with color
- converting to opaque formats without thinking about
premul/unpremul is probably fine, better than just
not working at all
- a missing src color space can always be assumed to be sRGB
Updates to ReadPixelsTest:
- skip more supported test cases in test_conversion(),
each with a TODO
- conversions from non-opaque to opaque should now work
- conversion from A8 to non-A8 should sometimes now
work on GPUs, and the test needed a little bit of
a tweak to not expect A8 to carry around color somehow.
Updates to SRGBReadWritePixelsTest:
- writing untagged pixels shouldn't fail anymore;
instead, it should behave like it was tagged sRGB
Change-Id: I19e78f3a6c89ef74fbcbc985d3fbd77fa984b1c2
Reviewed-on: https://skia-review.googlesource.com/147815
Commit-Queue: Mike Klein <mtklein@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
2018-08-17 18:09:55 +00:00
|
|
|
surfaceInfo);
|
2018-03-22 14:01:16 +00:00
|
|
|
}
|
2011-11-03 20:29:47 +00:00
|
|
|
}
|
2011-11-02 19:57:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-04-17 11:43:27 +00:00
|
|
|
|
2016-06-27 21:34:55 +00:00
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ReadPixels_Texture, reporter, ctxInfo) {
|
2017-04-17 11:43:27 +00:00
|
|
|
GrContext* context = ctxInfo.grContext();
|
|
|
|
SkBitmap bmp = make_src_bitmap();
|
|
|
|
|
2015-12-01 12:35:26 +00:00
|
|
|
// On the GPU we will also try reading back from a non-renderable texture.
|
2016-11-03 19:21:06 +00:00
|
|
|
for (auto origin : {kBottomLeft_GrSurfaceOrigin, kTopLeft_GrSurfaceOrigin}) {
|
2019-05-13 14:40:06 +00:00
|
|
|
for (auto renderable : {GrRenderable::kNo, GrRenderable::kYes}) {
|
2018-03-07 18:01:25 +00:00
|
|
|
sk_sp<GrTextureProxy> proxy = sk_gpu_test::MakeTextureProxyFromData(
|
2019-06-24 16:12:36 +00:00
|
|
|
context, renderable, DEV_W, DEV_H, bmp.colorType(), bmp.alphaType(), origin,
|
|
|
|
bmp.getPixels(), bmp.rowBytes());
|
2019-08-21 13:38:10 +00:00
|
|
|
auto sContext = context->priv().makeWrappedSurfaceContext(
|
2019-06-24 19:50:07 +00:00
|
|
|
std::move(proxy), SkColorTypeToGrColorType(bmp.colorType()),
|
|
|
|
kPremul_SkAlphaType);
|
2018-03-22 14:01:16 +00:00
|
|
|
auto info = SkImageInfo::Make(DEV_W, DEV_H, kN32_SkColorType, kPremul_SkAlphaType);
|
|
|
|
test_readpixels_texture(reporter, std::move(sContext), info);
|
2016-11-03 19:21:06 +00:00
|
|
|
}
|
2015-12-01 12:35:26 +00:00
|
|
|
}
|
|
|
|
}
|
2017-02-14 16:21:02 +00:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
static const uint32_t kNumPixels = 5;
|
|
|
|
|
|
|
|
// The five reference pixels are: red, green, blue, white, black.
|
|
|
|
// Five is an interesting number to test because we'll exercise a full 4-wide SIMD vector
|
|
|
|
// plus a tail pixel.
|
|
|
|
static const uint32_t rgba[kNumPixels] = {
|
|
|
|
0xFF0000FF, 0xFF00FF00, 0xFFFF0000, 0xFFFFFFFF, 0xFF000000
|
|
|
|
};
|
|
|
|
static const uint32_t bgra[kNumPixels] = {
|
|
|
|
0xFFFF0000, 0xFF00FF00, 0xFF0000FF, 0xFFFFFFFF, 0xFF000000
|
|
|
|
};
|
|
|
|
static const uint16_t rgb565[kNumPixels] = {
|
|
|
|
SK_R16_MASK_IN_PLACE, SK_G16_MASK_IN_PLACE, SK_B16_MASK_IN_PLACE, 0xFFFF, 0x0
|
|
|
|
};
|
|
|
|
|
|
|
|
static const uint16_t rgba4444[kNumPixels] = { 0xF00F, 0x0F0F, 0x00FF, 0xFFFF, 0x000F };
|
|
|
|
|
|
|
|
static const uint64_t kRed = (uint64_t) SK_Half1 << 0;
|
|
|
|
static const uint64_t kGreen = (uint64_t) SK_Half1 << 16;
|
|
|
|
static const uint64_t kBlue = (uint64_t) SK_Half1 << 32;
|
|
|
|
static const uint64_t kAlpha = (uint64_t) SK_Half1 << 48;
|
|
|
|
static const uint64_t f16[kNumPixels] = {
|
|
|
|
kAlpha | kRed, kAlpha | kGreen, kAlpha | kBlue, kAlpha | kBlue | kGreen | kRed, kAlpha
|
|
|
|
};
|
|
|
|
|
|
|
|
static const uint8_t alpha8[kNumPixels] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
|
|
|
|
static const uint8_t gray8[kNumPixels] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
|
|
|
|
|
|
|
|
static const void* five_reference_pixels(SkColorType colorType) {
|
|
|
|
switch (colorType) {
|
|
|
|
case kUnknown_SkColorType:
|
|
|
|
return nullptr;
|
|
|
|
case kAlpha_8_SkColorType:
|
|
|
|
return alpha8;
|
|
|
|
case kRGB_565_SkColorType:
|
|
|
|
return rgb565;
|
|
|
|
case kARGB_4444_SkColorType:
|
|
|
|
return rgba4444;
|
|
|
|
case kRGBA_8888_SkColorType:
|
|
|
|
return rgba;
|
|
|
|
case kBGRA_8888_SkColorType:
|
|
|
|
return bgra;
|
|
|
|
case kGray_8_SkColorType:
|
|
|
|
return gray8;
|
|
|
|
case kRGBA_F16_SkColorType:
|
|
|
|
return f16;
|
2017-07-12 19:10:28 +00:00
|
|
|
default:
|
2018-09-04 15:10:04 +00:00
|
|
|
return nullptr;
|
2017-02-14 16:21:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SkASSERT(false);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_conversion(skiatest::Reporter* r, const SkImageInfo& dstInfo,
|
|
|
|
const SkImageInfo& srcInfo) {
|
2018-06-04 13:21:17 +00:00
|
|
|
if (!SkImageInfoIsValid(srcInfo)) {
|
2017-02-14 16:21:02 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const void* srcPixels = five_reference_pixels(srcInfo.colorType());
|
2017-07-12 19:10:28 +00:00
|
|
|
SkPixmap srcPixmap(srcInfo, srcPixels, srcInfo.minRowBytes());
|
2017-02-14 16:21:02 +00:00
|
|
|
sk_sp<SkImage> src = SkImage::MakeFromRaster(srcPixmap, nullptr, nullptr);
|
|
|
|
REPORTER_ASSERT(r, src);
|
|
|
|
|
|
|
|
// Enough space for 5 pixels when color type is F16, more than enough space in other cases.
|
|
|
|
uint64_t dstPixels[kNumPixels];
|
2017-07-12 19:10:28 +00:00
|
|
|
SkPixmap dstPixmap(dstInfo, dstPixels, dstInfo.minRowBytes());
|
2017-02-14 16:21:02 +00:00
|
|
|
bool success = src->readPixels(dstPixmap, 0, 0);
|
|
|
|
REPORTER_ASSERT(r, success == SkImageInfoValidConversion(dstInfo, srcInfo));
|
|
|
|
|
|
|
|
if (success) {
|
|
|
|
if (kGray_8_SkColorType == srcInfo.colorType() &&
|
let's like, chill out about all these rules, man
There's really no reason to prevent any of these conversions;
they all have somewhat reasonable behavior:
- converting between grey in different color spaces
should probably work just fine
- we'll convert color to gray using a fixed set of
luminance coefficients, but that's better than failing
- we'll invent {r,g,b} = {0,0,0} if we convert alpha
to something with color
- converting to opaque formats without thinking about
premul/unpremul is probably fine, better than just
not working at all
- a missing src color space can always be assumed to be sRGB
Updates to ReadPixelsTest:
- skip more supported test cases in test_conversion(),
each with a TODO
- conversions from non-opaque to opaque should now work
- conversion from A8 to non-A8 should sometimes now
work on GPUs, and the test needed a little bit of
a tweak to not expect A8 to carry around color somehow.
Updates to SRGBReadWritePixelsTest:
- writing untagged pixels shouldn't fail anymore;
instead, it should behave like it was tagged sRGB
Change-Id: I19e78f3a6c89ef74fbcbc985d3fbd77fa984b1c2
Reviewed-on: https://skia-review.googlesource.com/147815
Commit-Queue: Mike Klein <mtklein@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
2018-08-17 18:09:55 +00:00
|
|
|
kGray_8_SkColorType != dstInfo.colorType()) {
|
|
|
|
// TODO: test (r,g,b) == (gray,gray,gray)?
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (kGray_8_SkColorType == dstInfo.colorType() &&
|
|
|
|
kGray_8_SkColorType != srcInfo.colorType()) {
|
|
|
|
// TODO: test gray = luminance?
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (kAlpha_8_SkColorType == srcInfo.colorType() &&
|
|
|
|
kAlpha_8_SkColorType != dstInfo.colorType()) {
|
|
|
|
// TODO: test output = black with this alpha?
|
2017-02-14 16:21:02 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
REPORTER_ASSERT(r, 0 == memcmp(dstPixels, five_reference_pixels(dstInfo.colorType()),
|
|
|
|
kNumPixels * SkColorTypeBytesPerPixel(dstInfo.colorType())));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DEF_TEST(ReadPixels_ValidConversion, reporter) {
|
|
|
|
const SkColorType kColorTypes[] = {
|
|
|
|
kUnknown_SkColorType,
|
|
|
|
kAlpha_8_SkColorType,
|
|
|
|
kRGB_565_SkColorType,
|
|
|
|
kARGB_4444_SkColorType,
|
|
|
|
kRGBA_8888_SkColorType,
|
|
|
|
kBGRA_8888_SkColorType,
|
|
|
|
kGray_8_SkColorType,
|
|
|
|
kRGBA_F16_SkColorType,
|
|
|
|
};
|
|
|
|
|
|
|
|
const SkAlphaType kAlphaTypes[] = {
|
|
|
|
kUnknown_SkAlphaType,
|
|
|
|
kOpaque_SkAlphaType,
|
|
|
|
kPremul_SkAlphaType,
|
|
|
|
kUnpremul_SkAlphaType,
|
|
|
|
};
|
|
|
|
|
|
|
|
const sk_sp<SkColorSpace> kColorSpaces[] = {
|
|
|
|
nullptr,
|
|
|
|
SkColorSpace::MakeSRGB(),
|
|
|
|
};
|
|
|
|
|
|
|
|
for (SkColorType dstCT : kColorTypes) {
|
|
|
|
for (SkAlphaType dstAT: kAlphaTypes) {
|
|
|
|
for (sk_sp<SkColorSpace> dstCS : kColorSpaces) {
|
|
|
|
for (SkColorType srcCT : kColorTypes) {
|
|
|
|
for (SkAlphaType srcAT: kAlphaTypes) {
|
|
|
|
for (sk_sp<SkColorSpace> srcCS : kColorSpaces) {
|
|
|
|
test_conversion(reporter,
|
|
|
|
SkImageInfo::Make(kNumPixels, 1, dstCT, dstAT, dstCS),
|
|
|
|
SkImageInfo::Make(kNumPixels, 1, srcCT, srcAT, srcCS));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-05-10 18:24:50 +00:00
|
|
|
|
2019-05-10 20:32:54 +00:00
|
|
|
static int min_rgb_channel_bits(SkColorType ct) {
|
|
|
|
switch (ct) {
|
2019-09-19 20:05:48 +00:00
|
|
|
case kUnknown_SkColorType: return 0;
|
|
|
|
case kAlpha_8_SkColorType: return 8;
|
|
|
|
case kA16_unorm_SkColorType: return 16;
|
|
|
|
case kA16_float_SkColorType: return 16;
|
|
|
|
case kRGB_565_SkColorType: return 5;
|
|
|
|
case kARGB_4444_SkColorType: return 4;
|
|
|
|
case kR8G8_unorm_SkColorType: return 8;
|
|
|
|
case kR16G16_unorm_SkColorType: return 16;
|
|
|
|
case kR16G16_float_SkColorType: return 16;
|
|
|
|
case kRGBA_8888_SkColorType: return 8;
|
|
|
|
case kRGB_888x_SkColorType: return 8;
|
|
|
|
case kBGRA_8888_SkColorType: return 8;
|
|
|
|
case kRGBA_1010102_SkColorType: return 10;
|
|
|
|
case kRGB_101010x_SkColorType: return 10;
|
|
|
|
case kGray_8_SkColorType: return 8; // counting gray as "rgb"
|
|
|
|
case kRGBA_F16Norm_SkColorType: return 10; // just counting the mantissa
|
|
|
|
case kRGBA_F16_SkColorType: return 10; // just counting the mantissa
|
|
|
|
case kRGBA_F32_SkColorType: return 23; // just counting the mantissa
|
|
|
|
case kR16G16B16A16_unorm_SkColorType: return 16;
|
2019-05-10 20:32:54 +00:00
|
|
|
}
|
|
|
|
SK_ABORT("Unexpected color type.");
|
|
|
|
}
|
|
|
|
|
2019-05-10 18:24:50 +00:00
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(AsyncReadPixels, reporter, ctxInfo) {
|
|
|
|
struct Context {
|
|
|
|
SkPixmap* fPixmap = nullptr;
|
|
|
|
bool fSuceeded = false;
|
|
|
|
bool fCalled = false;
|
|
|
|
};
|
|
|
|
auto callback = [](SkSurface::ReleaseContext context, const void* data, size_t rowBytes) {
|
|
|
|
auto* pm = static_cast<Context*>(context)->fPixmap;
|
|
|
|
static_cast<Context*>(context)->fCalled = true;
|
|
|
|
if ((static_cast<Context*>(context)->fSuceeded = SkToBool(data))) {
|
|
|
|
auto dst = static_cast<char*>(pm->writable_addr());
|
|
|
|
const auto* src = static_cast<const char*>(data);
|
|
|
|
for (int y = 0; y < pm->height(); ++y, src += rowBytes, dst += pm->rowBytes()) {
|
|
|
|
memcpy(dst, src, pm->width() * SkColorTypeBytesPerPixel(pm->colorType()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
for (auto origin : {kTopLeft_GrSurfaceOrigin, kBottomLeft_GrSurfaceOrigin}) {
|
|
|
|
static constexpr int kW = 16;
|
|
|
|
static constexpr int kH = 16;
|
2019-05-10 20:32:54 +00:00
|
|
|
for (int sct = 0; sct <= kLastEnum_SkColorType; ++sct) {
|
|
|
|
auto surfCT = static_cast<SkColorType>(sct);
|
2019-09-26 20:57:09 +00:00
|
|
|
auto info = SkImageInfo::Make(kW, kH, surfCT, kPremul_SkAlphaType,
|
|
|
|
SkColorSpace::MakeSRGB());
|
2019-05-10 18:24:50 +00:00
|
|
|
auto surf = SkSurface::MakeRenderTarget(ctxInfo.grContext(), SkBudgeted::kNo, info, 1,
|
|
|
|
origin, nullptr);
|
|
|
|
if (!surf) {
|
|
|
|
continue;
|
|
|
|
}
|
2019-09-26 20:57:09 +00:00
|
|
|
auto refSurf = SkSurface::MakeRaster(info);
|
|
|
|
SkNWayCanvas nway(info.width(), info.height());
|
|
|
|
nway.addCanvas(surf->getCanvas());
|
|
|
|
nway.addCanvas(refSurf->getCanvas());
|
|
|
|
|
2019-05-10 18:24:50 +00:00
|
|
|
float d = std::sqrt((float)surf->width() * surf->width() +
|
|
|
|
(float)surf->height() * surf->height());
|
|
|
|
for (int j = 0; j < surf->height(); ++j) {
|
|
|
|
for (int i = 0; i < surf->width(); ++i) {
|
|
|
|
float r = i / (float)surf->width();
|
|
|
|
float g = 1.f - i / (float)surf->height();
|
|
|
|
float b = std::sqrt((float)i * i + (float)j * j) / d;
|
|
|
|
SkPaint paint;
|
|
|
|
paint.setColor4f(SkColor4f{r, g, b, 1.f}, nullptr);
|
2019-09-26 20:57:09 +00:00
|
|
|
nway.drawRect(SkRect::MakeXYWH(i, j, 1, 1), paint);
|
2019-05-10 18:24:50 +00:00
|
|
|
}
|
|
|
|
}
|
2019-09-26 20:57:09 +00:00
|
|
|
for (int rct = 0; rct <= kLastEnum_SkColorType; ++rct) {
|
|
|
|
auto readCT = static_cast<SkColorType>(rct);
|
|
|
|
|
|
|
|
for (const sk_sp<SkColorSpace>& readCS :
|
|
|
|
{SkColorSpace::MakeSRGB(), SkColorSpace::MakeSRGBLinear()}) {
|
|
|
|
auto refImg = refSurf->makeImageSnapshot()->makeColorTypeAndColorSpace(readCT,
|
|
|
|
readCS);
|
|
|
|
// Test full size, partial, empty, and too wide rects.
|
|
|
|
for (const auto& rect : {SkIRect::MakeWH(kW, kH),
|
|
|
|
SkIRect::MakeLTRB(1, 2, kW - 3, kH - 4),
|
|
|
|
SkIRect::MakeXYWH(1, 1, 0, 0),
|
|
|
|
SkIRect::MakeWH(kW + 1, kH / 2)}) {
|
2019-05-10 20:32:54 +00:00
|
|
|
SkAutoPixmapStorage result;
|
|
|
|
Context context;
|
|
|
|
context.fPixmap = &result;
|
|
|
|
info = SkImageInfo::Make(rect.width(), rect.height(), readCT,
|
|
|
|
kPremul_SkAlphaType, readCS);
|
|
|
|
result.alloc(info);
|
|
|
|
memset(result.writable_addr(), 0xAB, result.computeByteSize());
|
2019-05-17 16:05:44 +00:00
|
|
|
// Rescale quality and linearity don't matter since we're doing a non-
|
|
|
|
// scaling readback.
|
|
|
|
surf->asyncRescaleAndReadPixels(info, rect, SkSurface::RescaleGamma::kSrc,
|
|
|
|
kNone_SkFilterQuality, callback, &context);
|
2019-05-10 20:32:54 +00:00
|
|
|
while (!context.fCalled) {
|
|
|
|
ctxInfo.grContext()->checkAsyncWorkCompletion();
|
|
|
|
}
|
|
|
|
if (rect.isEmpty() || !SkIRect::MakeWH(kW, kH).contains(rect)) {
|
|
|
|
REPORTER_ASSERT(reporter, !context.fSuceeded);
|
|
|
|
}
|
2019-09-26 20:57:09 +00:00
|
|
|
|
|
|
|
bool didCSConversion =
|
|
|
|
!SkColorSpace::Equals(readCS.get(), surf->imageInfo().colorSpace());
|
|
|
|
|
2019-07-02 18:23:00 +00:00
|
|
|
if (context.fSuceeded) {
|
|
|
|
REPORTER_ASSERT(reporter, readCT != kUnknown_SkColorType &&
|
|
|
|
!rect.isEmpty());
|
|
|
|
} else {
|
2019-09-26 20:57:09 +00:00
|
|
|
// TODO: Support reading to kGray, support kRGB_101010x at all in GPU.
|
2019-07-02 18:23:00 +00:00
|
|
|
auto surfBounds = SkIRect::MakeWH(surf->width(), surf->height());
|
|
|
|
if (readCT != kUnknown_SkColorType && readCT != kGray_8_SkColorType &&
|
2019-09-26 20:57:09 +00:00
|
|
|
readCT != kRGB_101010x_SkColorType && !rect.isEmpty() &&
|
|
|
|
surfBounds.contains(rect)) {
|
2019-07-02 18:23:00 +00:00
|
|
|
ERRORF(reporter,
|
2019-09-26 20:57:09 +00:00
|
|
|
"Async read failed. Surf Color Type: %s, Read CT: %s,"
|
2019-07-02 18:23:00 +00:00
|
|
|
"Rect [%d, %d, %d, %d], origin: %d, CS conversion: %d\n",
|
2019-09-26 20:57:09 +00:00
|
|
|
ToolUtils::colortype_name(surfCT),
|
|
|
|
ToolUtils::colortype_name(readCT),
|
|
|
|
rect.fLeft, rect.fTop, rect.fRight, rect.fBottom, origin,
|
|
|
|
didCSConversion);
|
2019-07-02 18:23:00 +00:00
|
|
|
}
|
2019-05-10 20:32:54 +00:00
|
|
|
continue;
|
|
|
|
}
|
2019-09-26 20:57:09 +00:00
|
|
|
SkPixmap ref;
|
|
|
|
refImg->peekPixels(&ref);
|
|
|
|
SkAssertResult(ref.extractSubset(&ref, rect));
|
|
|
|
|
|
|
|
// A CS conversion allows a 3 value difference and otherwise a 2 value
|
|
|
|
// difference. Note that sometimes read back on GPU can be lossy even when
|
|
|
|
// there no conversion at all because GPU->CPU read may go to a a lower bit
|
|
|
|
// depth format and then be promoted back to the original type. For example,
|
|
|
|
// GL ES cannot read to 1010102, so we go through 8888.
|
|
|
|
float numer = didCSConversion ? 3.f : 2.f;
|
|
|
|
int rgbBits = std::min({min_rgb_channel_bits(readCT),
|
|
|
|
min_rgb_channel_bits(surfCT), 8});
|
|
|
|
float tol = numer / (1 << rgbBits);
|
2019-05-10 20:32:54 +00:00
|
|
|
const float tols[4] = {tol, tol, tol, 0};
|
|
|
|
auto error = std::function<ComparePixmapsErrorReporter>(
|
|
|
|
[&](int x, int y, const float diffs[4]) {
|
2019-07-15 16:30:44 +00:00
|
|
|
SkASSERT(x >= 0 && y >= 0);
|
2019-05-10 20:32:54 +00:00
|
|
|
ERRORF(reporter,
|
2019-09-26 20:57:09 +00:00
|
|
|
"Surf Color Type: %s, Read CT: %s, Rect [%d, %d, %d, %d]"
|
2019-05-10 20:32:54 +00:00
|
|
|
", origin: %d, CS conversion: %d\n"
|
|
|
|
"Error at %d, %d. Diff in floats: (%f, %f, %f %f)",
|
2019-09-26 20:57:09 +00:00
|
|
|
ToolUtils::colortype_name(surfCT),
|
|
|
|
ToolUtils::colortype_name(readCT),
|
|
|
|
rect.fLeft, rect.fTop, rect.fRight, rect.fBottom, origin,
|
|
|
|
didCSConversion, x, y, diffs[0], diffs[1], diffs[2],
|
|
|
|
diffs[3]);
|
2019-05-10 20:32:54 +00:00
|
|
|
});
|
2019-07-15 16:30:44 +00:00
|
|
|
compare_pixels(ref, result, tols, error);
|
2019-05-10 18:24:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|