blob: d5485bbe35d980ffe4b130f2409c8ae12ea79257 [file] [log] [blame]
scroggo@google.comd5764e82012-08-22 15:00:05 +00001
2/*
3 * Copyright 2012 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8
scroggo@google.com825bb952012-08-22 15:14:43 +00009#if SK_SUPPORT_GPU
10
scroggo@google.comd5764e82012-08-22 15:00:05 +000011#include "GrContext.h"
bsalomon@google.com67b915d2013-02-04 16:13:32 +000012#include "GrContextFactory.h"
scroggo@google.comd5764e82012-08-22 15:00:05 +000013#include "SkBitmap.h"
scroggo@google.coma2a31922012-12-07 19:14:45 +000014#include "SkCanvas.h"
15#include "SkColor.h"
scroggo@google.comd5764e82012-08-22 15:00:05 +000016#include "SkGpuDevice.h"
scroggo@google.coma2a31922012-12-07 19:14:45 +000017#include "SkPaint.h"
scroggo@google.comd5764e82012-08-22 15:00:05 +000018#include "SkPixelRef.h"
19#include "SkRect.h"
20#include "Test.h"
21
22static const char* boolStr(bool value) {
23 return value ? "true" : "false";
24}
25
26// these are in the same order as the SkBitmap::Config enum
27static const char* gConfigName[] = {
reed@google.com6ba45722013-06-21 18:30:53 +000028 "None", "8888"
scroggo@google.comd5764e82012-08-22 15:00:05 +000029};
30
31struct Pair {
32 SkBitmap::Config fConfig;
33 const char* fValid;
34};
35
scroggo@google.coma2a31922012-12-07 19:14:45 +000036/**
37 * Check to ensure that copying a GPU-backed SkBitmap behaved as expected.
38 * @param reporter Used to report failures.
39 * @param desiredConfig Config being copied to. If the copy succeeded, dst must have this Config.
40 * @param success True if the copy succeeded.
41 * @param src A GPU-backed SkBitmap that had copyTo or deepCopyTo called on it.
42 * @param dst SkBitmap that was copied to.
scroggo@google.com5ccae2c2014-01-15 16:56:52 +000043 * @param expectSameGenID Whether the genIDs should be the same if success is true.
scroggo@google.coma2a31922012-12-07 19:14:45 +000044 */
45static void TestIndividualCopy(skiatest::Reporter* reporter, const SkBitmap::Config desiredConfig,
46 const bool success, const SkBitmap& src, const SkBitmap& dst,
scroggo@google.com5ccae2c2014-01-15 16:56:52 +000047 const bool expectSameGenID) {
scroggo@google.coma2a31922012-12-07 19:14:45 +000048 if (success) {
49 REPORTER_ASSERT(reporter, src.width() == dst.width());
50 REPORTER_ASSERT(reporter, src.height() == dst.height());
51 REPORTER_ASSERT(reporter, dst.config() == desiredConfig);
52 if (src.config() == dst.config()) {
scroggo@google.com5ccae2c2014-01-15 16:56:52 +000053 if (expectSameGenID) {
scroggo@google.coma2a31922012-12-07 19:14:45 +000054 REPORTER_ASSERT(reporter, src.getGenerationID() == dst.getGenerationID());
scroggo@google.com5ccae2c2014-01-15 16:56:52 +000055 } else {
56 REPORTER_ASSERT(reporter, src.getGenerationID() != dst.getGenerationID());
scroggo@google.coma2a31922012-12-07 19:14:45 +000057 }
58 REPORTER_ASSERT(reporter, src.pixelRef() != NULL && dst.pixelRef() != NULL);
59
60 // Do read backs and make sure that the two are the same.
61 SkBitmap srcReadBack, dstReadBack;
62 {
63 SkASSERT(src.getTexture() != NULL);
scroggo@google.com5ccae2c2014-01-15 16:56:52 +000064 const SkIPoint origin = src.pixelRefOrigin();
65 const SkIRect subset = SkIRect::MakeXYWH(origin.fX, origin.fY,
66 src.width(), src.height());
67 bool readBack = src.pixelRef()->readPixels(&srcReadBack, &subset);
scroggo@google.coma2a31922012-12-07 19:14:45 +000068 REPORTER_ASSERT(reporter, readBack);
69 }
70 if (dst.getTexture() != NULL) {
scroggo@google.com5ccae2c2014-01-15 16:56:52 +000071 const SkIPoint origin = dst.pixelRefOrigin();
72 const SkIRect subset = SkIRect::MakeXYWH(origin.fX, origin.fY,
73 dst.width(), dst.height());
74 bool readBack = dst.pixelRef()->readPixels(&dstReadBack, &subset);
scroggo@google.coma2a31922012-12-07 19:14:45 +000075 REPORTER_ASSERT(reporter, readBack);
76 } else {
77 // If dst is not a texture, do a copy instead, to the same config as srcReadBack.
78 bool copy = dst.copyTo(&dstReadBack, srcReadBack.config());
79 REPORTER_ASSERT(reporter, copy);
80 }
81
82 SkAutoLockPixels srcLock(srcReadBack);
83 SkAutoLockPixels dstLock(dstReadBack);
84 REPORTER_ASSERT(reporter, srcReadBack.readyToDraw() && dstReadBack.readyToDraw());
85
86 const char* srcP = static_cast<const char*>(srcReadBack.getAddr(0, 0));
87 const char* dstP = static_cast<const char*>(dstReadBack.getAddr(0, 0));
88 REPORTER_ASSERT(reporter, srcP != dstP);
89
90 REPORTER_ASSERT(reporter, !memcmp(srcP, dstP, srcReadBack.getSize()));
91 } else {
92 REPORTER_ASSERT(reporter, src.getGenerationID() != dst.getGenerationID());
93 }
scroggo@google.coma2a31922012-12-07 19:14:45 +000094 } else {
95 // dst should be unchanged from its initial state
96 REPORTER_ASSERT(reporter, dst.config() == SkBitmap::kNo_Config);
97 REPORTER_ASSERT(reporter, dst.width() == 0);
98 REPORTER_ASSERT(reporter, dst.height() == 0);
99 }
100
101}
102
scroggo@google.comd5764e82012-08-22 15:00:05 +0000103// Stripped down version of TestBitmapCopy that checks basic fields (width, height, config, genID)
104// to ensure that they were copied properly.
tfarina@chromium.org4ee16bf2014-01-10 22:08:27 +0000105DEF_GPUTEST(GpuBitmapCopy, reporter, factory) {
bsalomon@google.com7f805ff2012-12-10 17:32:07 +0000106#ifdef SK_BUILD_FOR_ANDROID // https://code.google.com/p/skia/issues/detail?id=753
107 return;
108#endif
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000109 for (int type = 0; type < GrContextFactory::kLastGLContextType; ++type) {
110 GrContextFactory::GLContextType glType = static_cast<GrContextFactory::GLContextType>(type);
111 if (!GrContextFactory::IsRenderingGLContext(glType)) {
112 continue;
113 }
scroggo@google.comd5764e82012-08-22 15:00:05 +0000114
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000115 GrContext* grContext = factory->get(glType);
116 if (NULL == grContext) {
117 continue;
scroggo@google.coma2a31922012-12-07 19:14:45 +0000118 }
119
scroggo@google.comd5764e82012-08-22 15:00:05 +0000120
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000121 if (NULL == grContext) {
122 return;
123 }
124 static const Pair gPairs[] = {
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000125 // SkGpuDevice can no longer be Create()ed with kNo_Config
126 // (or kUnknown_SkColorType in the new world), hence much of this
127 // test will be skipped, since it was checking that calling
128 // copyTo or deepCopyTo with src or dst set to kUnknown/kNo would
129 // successfully fail.
130 //
131 // If we can declare that you can *never* create a texture with
132 // kUnknown, then perhaps we can remove this entire test...
133 //
134// { SkBitmap::kNo_Config, "00" },
135// { SkBitmap::kARGB_8888_Config, "01" },
136 { SkBitmap::kARGB_8888_Config, "1" },
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000137 };
scroggo@google.comd5764e82012-08-22 15:00:05 +0000138
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000139 const int W = 20;
140 const int H = 33;
scroggo@google.coma2a31922012-12-07 19:14:45 +0000141
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000142 for (size_t i = 0; i < SK_ARRAY_COUNT(gPairs); i++) {
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000143 SkImageInfo info = SkImageInfo::Make(W, H,
144 SkBitmapConfigToColorType(gPairs[i].fConfig),
145 kPremul_SkAlphaType);
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000146 SkBitmap src, dst;
147
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000148 SkAutoTUnref<SkGpuDevice> device(SkGpuDevice::Create(grContext, info, 0));
149 SkASSERT(device.get());
150
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000151 src = device->accessBitmap(false);
152 device->clear(SK_ColorWHITE);
153
154 // Draw something different to the same portion of the bitmap that we will extract as a
155 // subset, so that comparing the pixels of the subset will be meaningful.
156 SkIRect subsetRect = SkIRect::MakeLTRB(W/2, H/2, W, H);
157 SkCanvas drawingCanvas(device);
158 SkPaint paint;
159 paint.setColor(SK_ColorRED);
reed@google.com44699382013-10-31 17:28:30 +0000160 drawingCanvas.drawRect(SkRect::Make(subsetRect), paint);
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000161
162 // Extract a subset. If this succeeds we will test copying the subset.
163 SkBitmap subset;
commit-bot@chromium.org6285f4f2014-02-20 19:08:07 +0000164#ifdef SK_SUPPORT_DEEPCOPYTO_CONFIG
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000165 const bool extracted = src.extractSubset(&subset, subsetRect);
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000166
167 for (size_t j = 0; j < SK_ARRAY_COUNT(gPairs); j++) {
168 dst.reset();
169 bool success = src.deepCopyTo(&dst, gPairs[j].fConfig);
170 bool expected = gPairs[i].fValid[j] != '0';
171 if (success != expected) {
halcanary@google.coma9325fa2014-01-10 14:58:10 +0000172 ERRORF(reporter, "SkBitmap::deepCopyTo from %s to %s. "
173 "expected %s returned %s", gConfigName[i],
174 gConfigName[j], boolStr(expected),
175 boolStr(success));
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000176 }
177
178 bool canSucceed = src.canCopyTo(gPairs[j].fConfig);
179 if (success != canSucceed) {
halcanary@google.coma9325fa2014-01-10 14:58:10 +0000180 ERRORF(reporter, "SkBitmap::deepCopyTo from %s to %s "
181 "returned %s, but canCopyTo returned %s",
182 gConfigName[i], gConfigName[j], boolStr(success),
183 boolStr(canSucceed));
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000184 }
185
scroggo@google.com5ccae2c2014-01-15 16:56:52 +0000186 TestIndividualCopy(reporter, gPairs[j].fConfig, success, src, dst, true);
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000187
188 // Test copying the subset bitmap, using both copyTo and deepCopyTo.
189 if (extracted) {
190 SkBitmap subsetCopy;
191 success = subset.copyTo(&subsetCopy, gPairs[j].fConfig);
192 REPORTER_ASSERT(reporter, success == expected);
193 REPORTER_ASSERT(reporter, success == canSucceed);
scroggo@google.com93491012013-02-05 19:22:27 +0000194 TestIndividualCopy(reporter, gPairs[j].fConfig, success, subset, subsetCopy,
scroggo@google.com5ccae2c2014-01-15 16:56:52 +0000195 true);
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000196
197 // Reset the bitmap so that a failed copyTo will leave it in the expected state.
198 subsetCopy.reset();
199 success = subset.deepCopyTo(&subsetCopy, gPairs[j].fConfig);
200 REPORTER_ASSERT(reporter, success == expected);
201 REPORTER_ASSERT(reporter, success == canSucceed);
scroggo@google.com93491012013-02-05 19:22:27 +0000202 TestIndividualCopy(reporter, gPairs[j].fConfig, success, subset, subsetCopy,
203 true);
scroggo@google.com5ccae2c2014-01-15 16:56:52 +0000204
205 // Now set a bitmap to be a subset that will share the same pixelref.
206 // This allows testing another case of cloning the genID. When calling copyTo
207 // on a bitmap representing a subset of its pixelref, the resulting pixelref
208 // should not share the genID, since we only copied the subset.
209 SkBitmap trueSubset;
210 // FIXME: Once https://codereview.chromium.org/109023008/ lands, call
211 // trueSubset.installPixelRef(src.pixelRef(), subset);
212 trueSubset.setConfig(gPairs[i].fConfig, W/2, H/2);
213 trueSubset.setPixelRef(src.pixelRef(), W/2, H/2);
214
215 subsetCopy.reset();
216 success = trueSubset.copyTo(&subsetCopy, gPairs[j].fConfig);
217 REPORTER_ASSERT(reporter, success == expected);
218 REPORTER_ASSERT(reporter, success == canSucceed);
219 TestIndividualCopy(reporter, gPairs[j].fConfig, success, trueSubset, subsetCopy,
220 false);
221
222 // deepCopyTo copies the entire pixelref, even if the bitmap only represents
223 // a subset. Therefore, the result should share the same genID.
224 subsetCopy.reset();
225 success = trueSubset.deepCopyTo(&subsetCopy, gPairs[j].fConfig);
226 REPORTER_ASSERT(reporter, success == expected);
227 REPORTER_ASSERT(reporter, success == canSucceed);
228 TestIndividualCopy(reporter, gPairs[j].fConfig, success, trueSubset, subsetCopy,
229 true);
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000230 }
231 } // for (size_t j = ...
commit-bot@chromium.org6285f4f2014-02-20 19:08:07 +0000232#endif
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000233 } // for (size_t i = ...
234 } // GrContextFactory::GLContextType
scroggo@google.comd5764e82012-08-22 15:00:05 +0000235}
236
scroggo@google.com825bb952012-08-22 15:14:43 +0000237#endif