aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/ReadWriteAlphaTest.cpp
diff options
context:
space:
mode:
authorGravatar bsalomon <bsalomon@google.com>2016-01-14 07:19:47 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-01-14 07:19:47 -0800
commit23e566664b85472766c921cd2f5615c846919934 (patch)
treef1700f55fea1e1ea3ea5964fbe7ea678ab568fba /tests/ReadWriteAlphaTest.cpp
parent4c7040bf8a30a191d5c9a3a7286b0ae3ed162611 (diff)
Revert of Make A8 readback work in more cases and improve testing. (patchset #5 id:70001 of https://codereview.chromium.org/1584563002/ )
Reason for revert: Breaking video tests in Chrome. Original issue's description: > Make A8 readback work in more cases and improve testing. > > BUG=skia: > GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1584563002 > > Committed: https://skia.googlesource.com/skia/+/b76afedf11c7fe933954d030048c3222860249e1 TBR=egdaniel@google.com # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=skia: Review URL: https://codereview.chromium.org/1581203005
Diffstat (limited to 'tests/ReadWriteAlphaTest.cpp')
-rw-r--r--tests/ReadWriteAlphaTest.cpp177
1 files changed, 59 insertions, 118 deletions
diff --git a/tests/ReadWriteAlphaTest.cpp b/tests/ReadWriteAlphaTest.cpp
index a33d57d7a9..1ee6b09a99 100644
--- a/tests/ReadWriteAlphaTest.cpp
+++ b/tests/ReadWriteAlphaTest.cpp
@@ -8,7 +8,7 @@
#include "Test.h"
// This test is specific to the GPU backend.
-#if SK_SUPPORT_GPU
+#if SK_SUPPORT_GPU && !defined(SK_BUILD_FOR_ANDROID)
#include "GrContext.h"
#include "SkGpuDevice.h"
@@ -18,147 +18,88 @@ static const int X_SIZE = 13;
static const int Y_SIZE = 13;
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ReadWriteAlpha, reporter, context) {
- unsigned char alphaData[X_SIZE][Y_SIZE];
+ unsigned char textureData[X_SIZE][Y_SIZE];
- memset(alphaData, 0, X_SIZE * Y_SIZE);
+ memset(textureData, 0, X_SIZE * Y_SIZE);
- bool match;
- unsigned char readback[X_SIZE][Y_SIZE];
+ GrSurfaceDesc desc;
- for (int rt = 0; rt < 2; ++rt) {
- GrSurfaceDesc desc;
- // let Skia know we will be using this texture as a render target
- desc.fFlags = rt ? kRenderTarget_GrSurfaceFlag : kNone_GrSurfaceFlags;
- // it is a single channel texture
- desc.fConfig = kAlpha_8_GrPixelConfig;
- desc.fWidth = X_SIZE;
- desc.fHeight = Y_SIZE;
-
- // We are initializing the texture with zeros here
- SkAutoTUnref<GrTexture> texture(
- context->textureProvider()->createTexture(desc, false, alphaData, 0));
- if (!texture) {
- if (!rt) {
- ERRORF(reporter, "Could not create alpha texture.");
- }
- continue;
- }
+ // let Skia know we will be using this texture as a render target
+ desc.fFlags = kRenderTarget_GrSurfaceFlag;
+ // it is a single channel texture
+ desc.fConfig = kAlpha_8_GrPixelConfig;
+ desc.fWidth = X_SIZE;
+ desc.fHeight = Y_SIZE;
- // create a distinctive texture
- for (int y = 0; y < Y_SIZE; ++y) {
- for (int x = 0; x < X_SIZE; ++x) {
- alphaData[x][y] = x*Y_SIZE+y;
- }
+ // We are initializing the texture with zeros here
+ GrTexture* texture = context->textureProvider()->createTexture(desc, false, textureData, 0);
+ if (!texture) {
+ return;
+ }
+
+ SkAutoTUnref<GrTexture> au(texture);
+
+ // create a distinctive texture
+ for (int y = 0; y < Y_SIZE; ++y) {
+ for (int x = 0; x < X_SIZE; ++x) {
+ textureData[x][y] = x*Y_SIZE+y;
}
+ }
+
+ // upload the texture
+ texture->writePixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
+ textureData, 0);
- // upload the texture
- texture->writePixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
- alphaData, 0);
+ unsigned char readback[X_SIZE][Y_SIZE];
- // clear readback to something non-zero so we can detect readback failures
- memset(readback, 0x1, X_SIZE * Y_SIZE);
+ // clear readback to something non-zero so we can detect readback failures
+ memset(readback, 0x1, X_SIZE * Y_SIZE);
- // read the texture back
- texture->readPixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
- readback, 0);
+ // read the texture back
+ texture->readPixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
+ readback, 0);
- // make sure the original & read back versions match
- match = true;
+ // make sure the original & read back versions match
+ bool match = true;
- for (int y = 0; y < Y_SIZE && match; ++y) {
- for (int x = 0; x < X_SIZE && match; ++x) {
- if (alphaData[x][y] != readback[x][y]) {
- SkDebugf("Failed alpha readback. Expected: 0x%02x, "
- "Got: 0x%02x at (%d,%d), rt: %d", alphaData[x][y], readback[x][y], x,
- y, rt);
- match = false;
- }
+ for (int y = 0; y < Y_SIZE; ++y) {
+ for (int x = 0; x < X_SIZE; ++x) {
+ if (textureData[x][y] != readback[x][y]) {
+ match = false;
}
}
+ }
- // Now try writing on the single channel texture (if we could create as a RT).
- if (texture->asRenderTarget()) {
- SkSurfaceProps props(SkSurfaceProps::kLegacyFontHost_InitType);
- SkAutoTUnref<SkBaseDevice> device(SkGpuDevice::Create(
- texture->asRenderTarget(), &props, SkGpuDevice::kUninit_InitContents));
- SkCanvas canvas(device);
+ REPORTER_ASSERT(reporter, match);
- SkPaint paint;
+ // Now try writing on the single channel texture
+ SkSurfaceProps props(SkSurfaceProps::kLegacyFontHost_InitType);
+ SkAutoTUnref<SkBaseDevice> device(SkGpuDevice::Create(texture->asRenderTarget(), &props,
+ SkGpuDevice::kUninit_InitContents));
+ SkCanvas canvas(device);
- const SkRect rect = SkRect::MakeLTRB(-10, -10, X_SIZE + 10, Y_SIZE + 10);
+ SkPaint paint;
- paint.setColor(SK_ColorWHITE);
+ const SkRect rect = SkRect::MakeLTRB(-10, -10, X_SIZE + 10, Y_SIZE + 10);
- canvas.drawRect(rect, paint);
+ paint.setColor(SK_ColorWHITE);
- texture->readPixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig, readback, 0);
+ canvas.drawRect(rect, paint);
- match = true;
+ texture->readPixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
+ readback, 0);
- for (int y = 0; y < Y_SIZE && match; ++y) {
- for (int x = 0; x < X_SIZE && match; ++x) {
- if (0xFF != readback[x][y]) {
- ERRORF(reporter,
- "Failed alpha readback after clear. Expected: 0xFF, Got: 0x%02x at "
- "(%d,%d)", readback[x][y], x, y);
- match = false;
- }
- }
- }
- }
- }
+ match = true;
- // Attempt to read back just alpha from a RGBA/BGRA texture. Once with a texture-only src and
- // once with a render target.
- for (int cfg = 0; cfg < 2; ++cfg) {
- for (int rt = 0; rt < 2; ++rt) {
- GrSurfaceDesc desc;
- desc.fFlags = rt ? kRenderTarget_GrSurfaceFlag : kNone_GrSurfaceFlags;
- desc.fConfig = cfg ? kBGRA_8888_GrPixelConfig : kRGBA_8888_GrPixelConfig;
- desc.fWidth = X_SIZE;
- desc.fHeight = Y_SIZE;
-
- uint32_t rgbaData[X_SIZE][Y_SIZE];
- // 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) {
- rgbaData[x][y] = GrColorPackRGBA(6, 7, 8, alphaData[x][y]);
- }
- }
- SkAutoTUnref<GrTexture> texture(
- context->textureProvider()->createTexture(desc, false, rgbaData, 0));
- 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;
- }
-
- // clear readback to something non-zero so we can detect readback failures
- memset(readback, 0x0, X_SIZE * Y_SIZE);
-
- // read the texture back
- texture->readPixels(0, 0, desc.fWidth, desc.fHeight, kAlpha_8_GrPixelConfig, readback,
- 0);
-
- match = true;
-
- for (int y = 0; y < Y_SIZE && match; ++y) {
- for (int x = 0; x < X_SIZE && match; ++x) {
- if (alphaData[x][y] != readback[x][y]) {
- texture->readPixels(0, 0, desc.fWidth, desc.fHeight,
- kAlpha_8_GrPixelConfig, readback, 0);
- ERRORF(reporter,
- "Failed alpha readback from cfg %d. Expected: 0x%02x, Got: 0x%02x at "
- "(%d,%d), rt:%d", desc.fConfig, alphaData[x][y], readback[x][y], x,
- y, rt);
- match = false;
- }
- }
+ for (int y = 0; y < Y_SIZE; ++y) {
+ for (int x = 0; x < X_SIZE; ++x) {
+ if (0xFF != readback[x][y]) {
+ match = false;
}
}
}
+
+ REPORTER_ASSERT(reporter, match);
}
#endif