blob: 630924aca69074bd5f73cac6a9210918a34b3d4e [file] [log] [blame]
robertphillips@google.com69950682012-04-06 18:06:10 +00001/*
2 * Copyright 2012 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
reedf037e0b2014-10-30 11:34:15 -07008#include "Test.h"
9
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000010// This test is specific to the GPU backend.
bsalomone9573312016-01-25 14:33:25 -080011#if SK_SUPPORT_GPU
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000012
kkinnunen15302832015-12-01 04:35:26 -080013#include "GrContext.h"
robertphillips7715e062016-04-22 10:57:16 -070014#include "SkCanvas.h"
15#include "SkSurface.h"
robertphillips@google.com69950682012-04-06 18:06:10 +000016
bsalomonf46a1242015-12-15 12:37:38 -080017// This was made indivisible by 4 to ensure we test setting GL_PACK_ALIGNMENT properly.
18static const int X_SIZE = 13;
19static const int Y_SIZE = 13;
robertphillips@google.com69950682012-04-06 18:06:10 +000020
bsalomon9d02b262016-02-01 12:49:30 -080021static void validate_alpha_data(skiatest::Reporter* reporter, int w, int h, const uint8_t* actual,
22 size_t actualRowBytes, const uint8_t* expected, SkString extraMsg) {
23 for (int y = 0; y < h; ++y) {
24 for (int x = 0; x < w; ++x) {
25 uint8_t a = actual[y * actualRowBytes + x];
26 uint8_t e = expected[y * w + x];
27 if (e != a) {
28 ERRORF(reporter,
29 "Failed alpha readback. Expected: 0x%02x, Got: 0x%02x at (%d,%d), %s",
30 e, a, x, y, extraMsg.c_str());
31 return;
32 }
33 }
34 }
35}
robertphillips@google.com69950682012-04-06 18:06:10 +000036
egdanielab527a52016-06-28 08:07:26 -070037DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ReadWriteAlpha, reporter, ctxInfo) {
bsalomon9d02b262016-02-01 12:49:30 -080038 unsigned char alphaData[X_SIZE * Y_SIZE];
robertphillips@google.com69950682012-04-06 18:06:10 +000039
robertphillipsdf082c52016-04-19 08:32:40 -070040 static const int kClearValue = 0x2;
41
bsalomone9573312016-01-25 14:33:25 -080042 bool match;
bsalomon9d02b262016-02-01 12:49:30 -080043 static const size_t kRowBytes[] = {0, X_SIZE, X_SIZE + 1, 2 * X_SIZE - 1};
bsalomone9573312016-01-25 14:33:25 -080044 for (int rt = 0; rt < 2; ++rt) {
45 GrSurfaceDesc desc;
46 // let Skia know we will be using this texture as a render target
47 desc.fFlags = rt ? kRenderTarget_GrSurfaceFlag : kNone_GrSurfaceFlags;
48 // it is a single channel texture
49 desc.fConfig = kAlpha_8_GrPixelConfig;
50 desc.fWidth = X_SIZE;
51 desc.fHeight = Y_SIZE;
kkinnunen15302832015-12-01 04:35:26 -080052
bsalomone9573312016-01-25 14:33:25 -080053 // We are initializing the texture with zeros here
bsalomon9d02b262016-02-01 12:49:30 -080054 memset(alphaData, 0, X_SIZE * Y_SIZE);
bsalomone9573312016-01-25 14:33:25 -080055 SkAutoTUnref<GrTexture> texture(
bsalomon8b7451a2016-05-11 06:33:06 -070056 ctxInfo.grContext()->textureProvider()->createTexture(desc, SkBudgeted::kNo, alphaData,
bsalomonf2f1c172016-04-05 12:59:06 -070057 0));
bsalomone9573312016-01-25 14:33:25 -080058 if (!texture) {
59 if (!rt) {
60 ERRORF(reporter, "Could not create alpha texture.");
61 }
62 continue;
63 }
kkinnunen15302832015-12-01 04:35:26 -080064
bsalomone9573312016-01-25 14:33:25 -080065 // create a distinctive texture
66 for (int y = 0; y < Y_SIZE; ++y) {
67 for (int x = 0; x < X_SIZE; ++x) {
bsalomon9d02b262016-02-01 12:49:30 -080068 alphaData[y * X_SIZE + x] = y*X_SIZE+x;
bsalomone9573312016-01-25 14:33:25 -080069 }
70 }
kkinnunen15302832015-12-01 04:35:26 -080071
bsalomon9d02b262016-02-01 12:49:30 -080072 for (auto rowBytes : kRowBytes) {
73 // upload the texture (do per-rowbytes iteration because we may overwrite below).
robertphillipsdf082c52016-04-19 08:32:40 -070074 bool result = texture->writePixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
75 alphaData, 0);
76 REPORTER_ASSERT_MESSAGE(reporter, result, "Initial A8 writePixels failed");
bsalomone9573312016-01-25 14:33:25 -080077
bsalomon9d02b262016-02-01 12:49:30 -080078 size_t nonZeroRowBytes = rowBytes ? rowBytes : X_SIZE;
79 SkAutoTDeleteArray<uint8_t> readback(new uint8_t[nonZeroRowBytes * Y_SIZE]);
80 // clear readback to something non-zero so we can detect readback failures
robertphillipsdf082c52016-04-19 08:32:40 -070081 memset(readback.get(), kClearValue, nonZeroRowBytes * Y_SIZE);
bsalomone9573312016-01-25 14:33:25 -080082
bsalomon9d02b262016-02-01 12:49:30 -080083 // read the texture back
robertphillipsdf082c52016-04-19 08:32:40 -070084 result = texture->readPixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
85 readback.get(), rowBytes);
86 REPORTER_ASSERT_MESSAGE(reporter, result, "Initial A8 readPixels failed");
bsalomone9573312016-01-25 14:33:25 -080087
bsalomon9d02b262016-02-01 12:49:30 -080088 // make sure the original & read back versions match
89 SkString msg;
robertphillipsdf082c52016-04-19 08:32:40 -070090 msg.printf("rt:%d, rb:%d A8", rt, SkToU32(rowBytes));
bsalomon9d02b262016-02-01 12:49:30 -080091 validate_alpha_data(reporter, X_SIZE, Y_SIZE, readback.get(), nonZeroRowBytes,
92 alphaData, msg);
bsalomone9573312016-01-25 14:33:25 -080093
bsalomon9d02b262016-02-01 12:49:30 -080094 // Now try writing on the single channel texture (if we could create as a RT).
95 if (texture->asRenderTarget()) {
robertphillips7715e062016-04-22 10:57:16 -070096 sk_sp<SkSurface> surf(SkSurface::MakeRenderTargetDirect(texture->asRenderTarget()));
97 SkCanvas* canvas = surf->getCanvas();
bsalomone9573312016-01-25 14:33:25 -080098
bsalomon9d02b262016-02-01 12:49:30 -080099 SkPaint paint;
bsalomone9573312016-01-25 14:33:25 -0800100
bsalomon9d02b262016-02-01 12:49:30 -0800101 const SkRect rect = SkRect::MakeLTRB(-10, -10, X_SIZE + 10, Y_SIZE + 10);
bsalomone9573312016-01-25 14:33:25 -0800102
bsalomon9d02b262016-02-01 12:49:30 -0800103 paint.setColor(SK_ColorWHITE);
bsalomone9573312016-01-25 14:33:25 -0800104
robertphillips7715e062016-04-22 10:57:16 -0700105 canvas->drawRect(rect, paint);
bsalomone9573312016-01-25 14:33:25 -0800106
robertphillipsdf082c52016-04-19 08:32:40 -0700107 memset(readback.get(), kClearValue, nonZeroRowBytes * Y_SIZE);
108 result = texture->readPixels(0, 0, desc.fWidth, desc.fHeight,
109 desc.fConfig, readback.get(), rowBytes);
110 REPORTER_ASSERT_MESSAGE(reporter, result, "A8 readPixels after clear failed");
bsalomone9573312016-01-25 14:33:25 -0800111
bsalomon9d02b262016-02-01 12:49:30 -0800112 match = true;
113 for (int y = 0; y < Y_SIZE && match; ++y) {
114 for (int x = 0; x < X_SIZE && match; ++x) {
115 uint8_t rbValue = readback.get()[y * nonZeroRowBytes + x];
116 if (0xFF != rbValue) {
117 ERRORF(reporter,
118 "Failed alpha readback after clear. Expected: 0xFF, Got: 0x%02x"
Brian Salomon2ea6ff72016-02-02 11:34:46 -0500119 " at (%d,%d), rb:%d", rbValue, x, y, SkToU32(rowBytes));
bsalomon9d02b262016-02-01 12:49:30 -0800120 match = false;
121 }
bsalomone9573312016-01-25 14:33:25 -0800122 }
123 }
kkinnunen15302832015-12-01 04:35:26 -0800124 }
125 }
126 }
127
bsalomone9573312016-01-25 14:33:25 -0800128 static const GrPixelConfig kRGBAConfigs[] {
129 kRGBA_8888_GrPixelConfig,
130 kBGRA_8888_GrPixelConfig,
131 kSRGBA_8888_GrPixelConfig
132 };
kkinnunen15302832015-12-01 04:35:26 -0800133
bsalomon9d02b262016-02-01 12:49:30 -0800134 for (int y = 0; y < Y_SIZE; ++y) {
135 for (int x = 0; x < X_SIZE; ++x) {
136 alphaData[y * X_SIZE + x] = y*X_SIZE+x;
137 }
138 }
139
bsalomone9573312016-01-25 14:33:25 -0800140 // Attempt to read back just alpha from a RGBA/BGRA texture. Once with a texture-only src and
141 // once with a render target.
142 for (auto cfg : kRGBAConfigs) {
143 for (int rt = 0; rt < 2; ++rt) {
144 GrSurfaceDesc desc;
145 desc.fFlags = rt ? kRenderTarget_GrSurfaceFlag : kNone_GrSurfaceFlags;
146 desc.fConfig = cfg;
147 desc.fWidth = X_SIZE;
148 desc.fHeight = Y_SIZE;
kkinnunen15302832015-12-01 04:35:26 -0800149
bsalomon9d02b262016-02-01 12:49:30 -0800150 uint32_t rgbaData[X_SIZE * Y_SIZE];
bsalomone9573312016-01-25 14:33:25 -0800151 // Make the alpha channel of the rgba texture come from alphaData.
152 for (int y = 0; y < Y_SIZE; ++y) {
153 for (int x = 0; x < X_SIZE; ++x) {
bsalomon9d02b262016-02-01 12:49:30 -0800154 rgbaData[y * X_SIZE + x] = GrColorPackRGBA(6, 7, 8, alphaData[y * X_SIZE + x]);
bsalomone9573312016-01-25 14:33:25 -0800155 }
156 }
157 SkAutoTUnref<GrTexture> texture(
bsalomon8b7451a2016-05-11 06:33:06 -0700158 ctxInfo.grContext()->textureProvider()->createTexture(desc, SkBudgeted::kNo,
159 rgbaData, 0));
bsalomone9573312016-01-25 14:33:25 -0800160 if (!texture) {
161 // We always expect to be able to create a RGBA texture
162 if (!rt && kRGBA_8888_GrPixelConfig == desc.fConfig) {
163 ERRORF(reporter, "Failed to create RGBA texture.");
164 }
165 continue;
166 }
kkinnunen15302832015-12-01 04:35:26 -0800167
bsalomon9d02b262016-02-01 12:49:30 -0800168 for (auto rowBytes : kRowBytes) {
169 size_t nonZeroRowBytes = rowBytes ? rowBytes : X_SIZE;
kkinnunen15302832015-12-01 04:35:26 -0800170
bsalomon9d02b262016-02-01 12:49:30 -0800171 SkAutoTDeleteArray<uint8_t> readback(new uint8_t[nonZeroRowBytes * Y_SIZE]);
172 // Clear so we don't accidentally see values from previous iteration.
robertphillipsdf082c52016-04-19 08:32:40 -0700173 memset(readback.get(), kClearValue, nonZeroRowBytes * Y_SIZE);
kkinnunen15302832015-12-01 04:35:26 -0800174
bsalomon9d02b262016-02-01 12:49:30 -0800175 // read the texture back
robertphillipsdf082c52016-04-19 08:32:40 -0700176 bool result = texture->readPixels(0, 0, desc.fWidth, desc.fHeight,
177 kAlpha_8_GrPixelConfig,
178 readback.get(), rowBytes);
179 REPORTER_ASSERT_MESSAGE(reporter, result, "8888 readPixels failed");
bsalomon23e56662016-01-14 07:19:47 -0800180
bsalomon9d02b262016-02-01 12:49:30 -0800181 // make sure the original & read back versions match
182 SkString msg;
robertphillipsdf082c52016-04-19 08:32:40 -0700183 msg.printf("rt:%d, rb:%d 8888", rt, SkToU32(rowBytes));
bsalomon9d02b262016-02-01 12:49:30 -0800184 validate_alpha_data(reporter, X_SIZE, Y_SIZE, readback.get(), nonZeroRowBytes,
185 alphaData, msg);
kkinnunen15302832015-12-01 04:35:26 -0800186 }
187 }
188 }
robertphillips@google.com69950682012-04-06 18:06:10 +0000189}
190
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000191#endif