2012-04-06 18:06:10 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2012 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2014-10-30 18:34:15 +00:00
|
|
|
#include "Test.h"
|
|
|
|
|
2012-08-02 14:03:32 +00:00
|
|
|
// This test is specific to the GPU backend.
|
2016-01-25 22:33:25 +00:00
|
|
|
#if SK_SUPPORT_GPU
|
2012-08-02 14:03:32 +00:00
|
|
|
|
2015-12-01 12:35:26 +00:00
|
|
|
#include "GrContext.h"
|
2017-01-19 21:59:04 +00:00
|
|
|
#include "GrContextPriv.h"
|
|
|
|
#include "GrSurfaceContext.h"
|
|
|
|
#include "GrSurfaceProxy.h"
|
2016-04-22 17:57:16 +00:00
|
|
|
#include "SkCanvas.h"
|
|
|
|
#include "SkSurface.h"
|
2012-04-06 18:06:10 +00:00
|
|
|
|
2015-12-15 20:37:38 +00:00
|
|
|
// This was made indivisible by 4 to ensure we test setting GL_PACK_ALIGNMENT properly.
|
|
|
|
static const int X_SIZE = 13;
|
|
|
|
static const int Y_SIZE = 13;
|
2012-04-06 18:06:10 +00:00
|
|
|
|
2016-02-01 20:49:30 +00:00
|
|
|
static void validate_alpha_data(skiatest::Reporter* reporter, int w, int h, const uint8_t* actual,
|
|
|
|
size_t actualRowBytes, const uint8_t* expected, SkString extraMsg) {
|
|
|
|
for (int y = 0; y < h; ++y) {
|
|
|
|
for (int x = 0; x < w; ++x) {
|
|
|
|
uint8_t a = actual[y * actualRowBytes + x];
|
|
|
|
uint8_t e = expected[y * w + x];
|
|
|
|
if (e != a) {
|
|
|
|
ERRORF(reporter,
|
|
|
|
"Failed alpha readback. Expected: 0x%02x, Got: 0x%02x at (%d,%d), %s",
|
|
|
|
e, a, x, y, extraMsg.c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-04-06 18:06:10 +00:00
|
|
|
|
2016-06-28 15:07:26 +00:00
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ReadWriteAlpha, reporter, ctxInfo) {
|
2017-01-19 21:59:04 +00:00
|
|
|
GrContext* context = ctxInfo.grContext();
|
2016-02-01 20:49:30 +00:00
|
|
|
unsigned char alphaData[X_SIZE * Y_SIZE];
|
2012-04-06 18:06:10 +00:00
|
|
|
|
2016-04-19 15:32:40 +00:00
|
|
|
static const int kClearValue = 0x2;
|
|
|
|
|
2016-01-25 22:33:25 +00:00
|
|
|
bool match;
|
2016-02-01 20:49:30 +00:00
|
|
|
static const size_t kRowBytes[] = {0, X_SIZE, X_SIZE + 1, 2 * X_SIZE - 1};
|
2016-07-26 18:38:17 +00:00
|
|
|
{
|
2016-01-25 22:33:25 +00:00
|
|
|
GrSurfaceDesc desc;
|
2016-07-26 18:38:17 +00:00
|
|
|
desc.fFlags = kNone_GrSurfaceFlags;
|
|
|
|
desc.fConfig = kAlpha_8_GrPixelConfig; // it is a single channel texture
|
2016-01-25 22:33:25 +00:00
|
|
|
desc.fWidth = X_SIZE;
|
|
|
|
desc.fHeight = Y_SIZE;
|
|
|
|
|
|
|
|
// We are initializing the texture with zeros here
|
2016-02-01 20:49:30 +00:00
|
|
|
memset(alphaData, 0, X_SIZE * Y_SIZE);
|
2017-01-19 21:59:04 +00:00
|
|
|
|
|
|
|
sk_sp<GrSurfaceProxy> sProxy(GrSurfaceProxy::MakeDeferred(*context->caps(),
|
|
|
|
context->textureProvider(),
|
|
|
|
desc,
|
|
|
|
SkBudgeted::kNo,
|
|
|
|
alphaData, 0));
|
|
|
|
if (!sProxy) {
|
2016-07-26 18:38:17 +00:00
|
|
|
ERRORF(reporter, "Could not create alpha texture.");
|
|
|
|
return;
|
2016-01-13 20:19:15 +00:00
|
|
|
}
|
2017-01-19 21:59:04 +00:00
|
|
|
sk_sp<GrSurfaceContext> sContext(context->contextPriv().makeWrappedSurfaceContext(
|
|
|
|
sProxy, nullptr));
|
2016-01-14 15:19:47 +00:00
|
|
|
|
2016-07-26 18:38:17 +00:00
|
|
|
const SkImageInfo ii = SkImageInfo::MakeA8(X_SIZE, Y_SIZE);
|
2017-01-19 21:59:04 +00:00
|
|
|
sk_sp<SkSurface> surf(SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, ii));
|
2016-07-26 18:38:17 +00:00
|
|
|
|
2016-01-25 22:33:25 +00:00
|
|
|
// create a distinctive texture
|
|
|
|
for (int y = 0; y < Y_SIZE; ++y) {
|
|
|
|
for (int x = 0; x < X_SIZE; ++x) {
|
2016-02-01 20:49:30 +00:00
|
|
|
alphaData[y * X_SIZE + x] = y*X_SIZE+x;
|
2012-04-06 18:06:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-01 20:49:30 +00:00
|
|
|
for (auto rowBytes : kRowBytes) {
|
2017-01-19 21:59:04 +00:00
|
|
|
|
2016-02-01 20:49:30 +00:00
|
|
|
// upload the texture (do per-rowbytes iteration because we may overwrite below).
|
2017-01-19 21:59:04 +00:00
|
|
|
bool result = sContext->writePixels(ii, alphaData, 0, 0, 0);
|
2016-04-19 15:32:40 +00:00
|
|
|
REPORTER_ASSERT_MESSAGE(reporter, result, "Initial A8 writePixels failed");
|
2012-04-06 18:06:10 +00:00
|
|
|
|
2016-02-01 20:49:30 +00:00
|
|
|
size_t nonZeroRowBytes = rowBytes ? rowBytes : X_SIZE;
|
2016-11-02 21:07:33 +00:00
|
|
|
std::unique_ptr<uint8_t[]> readback(new uint8_t[nonZeroRowBytes * Y_SIZE]);
|
2016-02-01 20:49:30 +00:00
|
|
|
// clear readback to something non-zero so we can detect readback failures
|
2016-04-19 15:32:40 +00:00
|
|
|
memset(readback.get(), kClearValue, nonZeroRowBytes * Y_SIZE);
|
2015-12-01 12:35:26 +00:00
|
|
|
|
2016-02-01 20:49:30 +00:00
|
|
|
// read the texture back
|
2017-01-19 21:59:04 +00:00
|
|
|
result = sContext->readPixels(ii, readback.get(), rowBytes, 0, 0);
|
2016-04-19 15:32:40 +00:00
|
|
|
REPORTER_ASSERT_MESSAGE(reporter, result, "Initial A8 readPixels failed");
|
2016-02-01 20:49:30 +00:00
|
|
|
|
|
|
|
// make sure the original & read back versions match
|
|
|
|
SkString msg;
|
2016-07-26 18:38:17 +00:00
|
|
|
msg.printf("rb:%d A8", SkToU32(rowBytes));
|
2016-02-01 20:49:30 +00:00
|
|
|
validate_alpha_data(reporter, X_SIZE, Y_SIZE, readback.get(), nonZeroRowBytes,
|
|
|
|
alphaData, msg);
|
|
|
|
|
2016-07-26 18:38:17 +00:00
|
|
|
// Now try writing to a single channel surface (if we could create one).
|
|
|
|
if (surf) {
|
2016-04-22 17:57:16 +00:00
|
|
|
SkCanvas* canvas = surf->getCanvas();
|
2016-02-01 20:49:30 +00:00
|
|
|
|
|
|
|
SkPaint paint;
|
|
|
|
|
|
|
|
const SkRect rect = SkRect::MakeLTRB(-10, -10, X_SIZE + 10, Y_SIZE + 10);
|
|
|
|
|
|
|
|
paint.setColor(SK_ColorWHITE);
|
|
|
|
|
2016-04-22 17:57:16 +00:00
|
|
|
canvas->drawRect(rect, paint);
|
2016-02-01 20:49:30 +00:00
|
|
|
|
2016-04-19 15:32:40 +00:00
|
|
|
memset(readback.get(), kClearValue, nonZeroRowBytes * Y_SIZE);
|
2016-07-26 18:38:17 +00:00
|
|
|
result = surf->readPixels(ii, readback.get(), nonZeroRowBytes, 0, 0);
|
2016-04-19 15:32:40 +00:00
|
|
|
REPORTER_ASSERT_MESSAGE(reporter, result, "A8 readPixels after clear failed");
|
2016-02-01 20:49:30 +00:00
|
|
|
|
|
|
|
match = true;
|
|
|
|
for (int y = 0; y < Y_SIZE && match; ++y) {
|
|
|
|
for (int x = 0; x < X_SIZE && match; ++x) {
|
|
|
|
uint8_t rbValue = readback.get()[y * nonZeroRowBytes + x];
|
|
|
|
if (0xFF != rbValue) {
|
|
|
|
ERRORF(reporter,
|
|
|
|
"Failed alpha readback after clear. Expected: 0xFF, Got: 0x%02x"
|
2016-02-02 16:34:46 +00:00
|
|
|
" at (%d,%d), rb:%d", rbValue, x, y, SkToU32(rowBytes));
|
2016-02-01 20:49:30 +00:00
|
|
|
match = false;
|
|
|
|
}
|
2016-01-25 22:33:25 +00:00
|
|
|
}
|
|
|
|
}
|
2016-01-13 20:19:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-01-14 15:19:47 +00:00
|
|
|
|
2016-01-25 22:33:25 +00:00
|
|
|
static const GrPixelConfig kRGBAConfigs[] {
|
|
|
|
kRGBA_8888_GrPixelConfig,
|
|
|
|
kBGRA_8888_GrPixelConfig,
|
|
|
|
kSRGBA_8888_GrPixelConfig
|
|
|
|
};
|
|
|
|
|
2016-02-01 20:49:30 +00:00
|
|
|
for (int y = 0; y < Y_SIZE; ++y) {
|
|
|
|
for (int x = 0; x < X_SIZE; ++x) {
|
|
|
|
alphaData[y * X_SIZE + x] = y*X_SIZE+x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-25 22:33:25 +00:00
|
|
|
// Attempt to read back just alpha from a RGBA/BGRA texture. Once with a texture-only src and
|
|
|
|
// once with a render target.
|
|
|
|
for (auto cfg : kRGBAConfigs) {
|
|
|
|
for (int rt = 0; rt < 2; ++rt) {
|
|
|
|
GrSurfaceDesc desc;
|
|
|
|
desc.fFlags = rt ? kRenderTarget_GrSurfaceFlag : kNone_GrSurfaceFlags;
|
|
|
|
desc.fConfig = cfg;
|
|
|
|
desc.fWidth = X_SIZE;
|
|
|
|
desc.fHeight = Y_SIZE;
|
|
|
|
|
2016-02-01 20:49:30 +00:00
|
|
|
uint32_t rgbaData[X_SIZE * Y_SIZE];
|
2016-01-25 22:33:25 +00:00
|
|
|
// Make the alpha channel of the rgba texture come from alphaData.
|
|
|
|
for (int y = 0; y < Y_SIZE; ++y) {
|
|
|
|
for (int x = 0; x < X_SIZE; ++x) {
|
2016-02-01 20:49:30 +00:00
|
|
|
rgbaData[y * X_SIZE + x] = GrColorPackRGBA(6, 7, 8, alphaData[y * X_SIZE + x]);
|
2016-01-25 22:33:25 +00:00
|
|
|
}
|
|
|
|
}
|
2016-11-04 15:49:42 +00:00
|
|
|
sk_sp<GrTexture> texture(
|
2017-01-19 21:59:04 +00:00
|
|
|
context->textureProvider()->createTexture(desc, SkBudgeted::kNo, rgbaData, 0));
|
2016-01-25 22:33:25 +00:00
|
|
|
if (!texture) {
|
|
|
|
// We always expect to be able to create a RGBA texture
|
|
|
|
if (!rt && kRGBA_8888_GrPixelConfig == desc.fConfig) {
|
|
|
|
ERRORF(reporter, "Failed to create RGBA texture.");
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-02-01 20:49:30 +00:00
|
|
|
for (auto rowBytes : kRowBytes) {
|
|
|
|
size_t nonZeroRowBytes = rowBytes ? rowBytes : X_SIZE;
|
2016-01-25 22:33:25 +00:00
|
|
|
|
2016-11-02 21:07:33 +00:00
|
|
|
std::unique_ptr<uint8_t[]> readback(new uint8_t[nonZeroRowBytes * Y_SIZE]);
|
2016-02-01 20:49:30 +00:00
|
|
|
// Clear so we don't accidentally see values from previous iteration.
|
2016-04-19 15:32:40 +00:00
|
|
|
memset(readback.get(), kClearValue, nonZeroRowBytes * Y_SIZE);
|
2016-02-01 20:49:30 +00:00
|
|
|
|
|
|
|
// read the texture back
|
2016-04-19 15:32:40 +00:00
|
|
|
bool result = texture->readPixels(0, 0, desc.fWidth, desc.fHeight,
|
|
|
|
kAlpha_8_GrPixelConfig,
|
|
|
|
readback.get(), rowBytes);
|
|
|
|
REPORTER_ASSERT_MESSAGE(reporter, result, "8888 readPixels failed");
|
2016-02-01 20:49:30 +00:00
|
|
|
|
|
|
|
// make sure the original & read back versions match
|
|
|
|
SkString msg;
|
2016-04-19 15:32:40 +00:00
|
|
|
msg.printf("rt:%d, rb:%d 8888", rt, SkToU32(rowBytes));
|
2016-02-01 20:49:30 +00:00
|
|
|
validate_alpha_data(reporter, X_SIZE, Y_SIZE, readback.get(), nonZeroRowBytes,
|
|
|
|
alphaData, msg);
|
2016-01-25 22:33:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-04-06 18:06:10 +00:00
|
|
|
}
|
|
|
|
|
2012-08-02 14:03:32 +00:00
|
|
|
#endif
|