blob: bf22ea7e463d8d1b7a3e3803e739afb3f8ed6583 [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
commit-bot@chromium.orgd5f032d2014-02-24 18:51:43 +000022struct Pair {
23 SkColorType fColorType;
24 const char* fValid;
25};
26
27#ifdef SK_SUPPORT_DEEPCOPYTO_CONFIG
scroggo@google.comd5764e82012-08-22 15:00:05 +000028static const char* boolStr(bool value) {
29 return value ? "true" : "false";
30}
31
32// these are in the same order as the SkBitmap::Config enum
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +000033static const char* gColorTypeName[] = {
reed@google.com6ba45722013-06-21 18:30:53 +000034 "None", "8888"
scroggo@google.comd5764e82012-08-22 15:00:05 +000035};
36
scroggo@google.coma2a31922012-12-07 19:14:45 +000037/**
38 * Check to ensure that copying a GPU-backed SkBitmap behaved as expected.
39 * @param reporter Used to report failures.
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +000040 * @param desiredCT colorType being copied to. If the copy succeeded, dst must have this Config.
scroggo@google.coma2a31922012-12-07 19:14:45 +000041 * @param success True if the copy succeeded.
42 * @param src A GPU-backed SkBitmap that had copyTo or deepCopyTo called on it.
43 * @param dst SkBitmap that was copied to.
scroggo@google.com5ccae2c2014-01-15 16:56:52 +000044 * @param expectSameGenID Whether the genIDs should be the same if success is true.
scroggo@google.coma2a31922012-12-07 19:14:45 +000045 */
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +000046static void TestIndividualCopy(skiatest::Reporter* reporter, const SkColorType desiredCT,
scroggo@google.coma2a31922012-12-07 19:14:45 +000047 const bool success, const SkBitmap& src, const SkBitmap& dst,
scroggo@google.com5ccae2c2014-01-15 16:56:52 +000048 const bool expectSameGenID) {
scroggo@google.coma2a31922012-12-07 19:14:45 +000049 if (success) {
50 REPORTER_ASSERT(reporter, src.width() == dst.width());
51 REPORTER_ASSERT(reporter, src.height() == dst.height());
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +000052 REPORTER_ASSERT(reporter, dst.colorType() == desiredCT);
scroggo@google.coma2a31922012-12-07 19:14:45 +000053 if (src.config() == dst.config()) {
scroggo@google.com5ccae2c2014-01-15 16:56:52 +000054 if (expectSameGenID) {
scroggo@google.coma2a31922012-12-07 19:14:45 +000055 REPORTER_ASSERT(reporter, src.getGenerationID() == dst.getGenerationID());
scroggo@google.com5ccae2c2014-01-15 16:56:52 +000056 } else {
57 REPORTER_ASSERT(reporter, src.getGenerationID() != dst.getGenerationID());
scroggo@google.coma2a31922012-12-07 19:14:45 +000058 }
59 REPORTER_ASSERT(reporter, src.pixelRef() != NULL && dst.pixelRef() != NULL);
60
61 // Do read backs and make sure that the two are the same.
62 SkBitmap srcReadBack, dstReadBack;
63 {
64 SkASSERT(src.getTexture() != NULL);
scroggo@google.com5ccae2c2014-01-15 16:56:52 +000065 const SkIPoint origin = src.pixelRefOrigin();
66 const SkIRect subset = SkIRect::MakeXYWH(origin.fX, origin.fY,
67 src.width(), src.height());
68 bool readBack = src.pixelRef()->readPixels(&srcReadBack, &subset);
scroggo@google.coma2a31922012-12-07 19:14:45 +000069 REPORTER_ASSERT(reporter, readBack);
70 }
71 if (dst.getTexture() != NULL) {
scroggo@google.com5ccae2c2014-01-15 16:56:52 +000072 const SkIPoint origin = dst.pixelRefOrigin();
73 const SkIRect subset = SkIRect::MakeXYWH(origin.fX, origin.fY,
74 dst.width(), dst.height());
75 bool readBack = dst.pixelRef()->readPixels(&dstReadBack, &subset);
scroggo@google.coma2a31922012-12-07 19:14:45 +000076 REPORTER_ASSERT(reporter, readBack);
77 } else {
78 // If dst is not a texture, do a copy instead, to the same config as srcReadBack.
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +000079 bool copy = dst.copyTo(&dstReadBack, srcReadBack.colorType());
scroggo@google.coma2a31922012-12-07 19:14:45 +000080 REPORTER_ASSERT(reporter, copy);
81 }
82
83 SkAutoLockPixels srcLock(srcReadBack);
84 SkAutoLockPixels dstLock(dstReadBack);
85 REPORTER_ASSERT(reporter, srcReadBack.readyToDraw() && dstReadBack.readyToDraw());
86
87 const char* srcP = static_cast<const char*>(srcReadBack.getAddr(0, 0));
88 const char* dstP = static_cast<const char*>(dstReadBack.getAddr(0, 0));
89 REPORTER_ASSERT(reporter, srcP != dstP);
90
91 REPORTER_ASSERT(reporter, !memcmp(srcP, dstP, srcReadBack.getSize()));
92 } else {
93 REPORTER_ASSERT(reporter, src.getGenerationID() != dst.getGenerationID());
94 }
scroggo@google.coma2a31922012-12-07 19:14:45 +000095 } else {
96 // dst should be unchanged from its initial state
97 REPORTER_ASSERT(reporter, dst.config() == SkBitmap::kNo_Config);
98 REPORTER_ASSERT(reporter, dst.width() == 0);
99 REPORTER_ASSERT(reporter, dst.height() == 0);
100 }
101
102}
commit-bot@chromium.orgd5f032d2014-02-24 18:51:43 +0000103#endif
scroggo@google.coma2a31922012-12-07 19:14:45 +0000104
scroggo@google.comd5764e82012-08-22 15:00:05 +0000105// Stripped down version of TestBitmapCopy that checks basic fields (width, height, config, genID)
106// to ensure that they were copied properly.
tfarina@chromium.org4ee16bf2014-01-10 22:08:27 +0000107DEF_GPUTEST(GpuBitmapCopy, reporter, factory) {
bsalomon@google.com7f805ff2012-12-10 17:32:07 +0000108#ifdef SK_BUILD_FOR_ANDROID // https://code.google.com/p/skia/issues/detail?id=753
109 return;
110#endif
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000111 for (int type = 0; type < GrContextFactory::kLastGLContextType; ++type) {
112 GrContextFactory::GLContextType glType = static_cast<GrContextFactory::GLContextType>(type);
113 if (!GrContextFactory::IsRenderingGLContext(glType)) {
114 continue;
115 }
scroggo@google.comd5764e82012-08-22 15:00:05 +0000116
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000117 GrContext* grContext = factory->get(glType);
118 if (NULL == grContext) {
119 continue;
scroggo@google.coma2a31922012-12-07 19:14:45 +0000120 }
121
scroggo@google.comd5764e82012-08-22 15:00:05 +0000122
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000123 if (NULL == grContext) {
124 return;
125 }
126 static const Pair gPairs[] = {
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000127 // SkGpuDevice can no longer be Create()ed with kNo_Config
128 // (or kUnknown_SkColorType in the new world), hence much of this
129 // test will be skipped, since it was checking that calling
130 // copyTo or deepCopyTo with src or dst set to kUnknown/kNo would
131 // successfully fail.
132 //
133 // If we can declare that you can *never* create a texture with
134 // kUnknown, then perhaps we can remove this entire test...
135 //
136// { SkBitmap::kNo_Config, "00" },
137// { SkBitmap::kARGB_8888_Config, "01" },
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +0000138 { kPMColor_SkColorType, "1" },
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000139 };
scroggo@google.comd5764e82012-08-22 15:00:05 +0000140
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000141 const int W = 20;
142 const int H = 33;
scroggo@google.coma2a31922012-12-07 19:14:45 +0000143
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000144 for (size_t i = 0; i < SK_ARRAY_COUNT(gPairs); i++) {
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000145 SkImageInfo info = SkImageInfo::Make(W, H,
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +0000146 gPairs[i].fColorType,
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000147 kPremul_SkAlphaType);
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000148 SkBitmap src, dst;
149
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000150 SkAutoTUnref<SkGpuDevice> device(SkGpuDevice::Create(grContext, info, 0));
151 SkASSERT(device.get());
152
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000153 src = device->accessBitmap(false);
154 device->clear(SK_ColorWHITE);
155
156 // Draw something different to the same portion of the bitmap that we will extract as a
157 // subset, so that comparing the pixels of the subset will be meaningful.
158 SkIRect subsetRect = SkIRect::MakeLTRB(W/2, H/2, W, H);
159 SkCanvas drawingCanvas(device);
160 SkPaint paint;
161 paint.setColor(SK_ColorRED);
reed@google.com44699382013-10-31 17:28:30 +0000162 drawingCanvas.drawRect(SkRect::Make(subsetRect), paint);
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000163
164 // Extract a subset. If this succeeds we will test copying the subset.
165 SkBitmap subset;
commit-bot@chromium.org6285f4f2014-02-20 19:08:07 +0000166#ifdef SK_SUPPORT_DEEPCOPYTO_CONFIG
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000167 const bool extracted = src.extractSubset(&subset, subsetRect);
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000168
169 for (size_t j = 0; j < SK_ARRAY_COUNT(gPairs); j++) {
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +0000170 SkBitmap::Config pairsConfig = SkColorTypeToBitmapConfig(gPairs[j].fColorType);
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000171 dst.reset();
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +0000172 bool success = src.deepCopyTo(&dst, pairsConfig);
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000173 bool expected = gPairs[i].fValid[j] != '0';
174 if (success != expected) {
halcanary@google.coma9325fa2014-01-10 14:58:10 +0000175 ERRORF(reporter, "SkBitmap::deepCopyTo from %s to %s. "
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +0000176 "expected %s returned %s", gColorTypeName[i],
177 gColorTypeName[j], boolStr(expected),
halcanary@google.coma9325fa2014-01-10 14:58:10 +0000178 boolStr(success));
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000179 }
180
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +0000181 bool canSucceed = src.canCopyTo(gPairs[j].fColorType);
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000182 if (success != canSucceed) {
halcanary@google.coma9325fa2014-01-10 14:58:10 +0000183 ERRORF(reporter, "SkBitmap::deepCopyTo from %s to %s "
184 "returned %s, but canCopyTo returned %s",
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +0000185 gColorTypeName[i], gColorTypeName[j], boolStr(success),
halcanary@google.coma9325fa2014-01-10 14:58:10 +0000186 boolStr(canSucceed));
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000187 }
188
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +0000189 TestIndividualCopy(reporter, gPairs[j].fColorType, success, src, dst, true);
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000190
191 // Test copying the subset bitmap, using both copyTo and deepCopyTo.
192 if (extracted) {
193 SkBitmap subsetCopy;
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +0000194 success = subset.copyTo(&subsetCopy, gPairs[j].fColorType);
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000195 REPORTER_ASSERT(reporter, success == expected);
196 REPORTER_ASSERT(reporter, success == canSucceed);
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +0000197 TestIndividualCopy(reporter, gPairs[j].fColorType, success, subset, subsetCopy,
scroggo@google.com5ccae2c2014-01-15 16:56:52 +0000198 true);
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000199
200 // Reset the bitmap so that a failed copyTo will leave it in the expected state.
201 subsetCopy.reset();
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +0000202 success = subset.deepCopyTo(&subsetCopy, pairsConfig);
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000203 REPORTER_ASSERT(reporter, success == expected);
204 REPORTER_ASSERT(reporter, success == canSucceed);
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +0000205 TestIndividualCopy(reporter, gPairs[j].fColorType, success, subset, subsetCopy,
scroggo@google.com93491012013-02-05 19:22:27 +0000206 true);
scroggo@google.com5ccae2c2014-01-15 16:56:52 +0000207
208 // Now set a bitmap to be a subset that will share the same pixelref.
209 // This allows testing another case of cloning the genID. When calling copyTo
210 // on a bitmap representing a subset of its pixelref, the resulting pixelref
211 // should not share the genID, since we only copied the subset.
212 SkBitmap trueSubset;
213 // FIXME: Once https://codereview.chromium.org/109023008/ lands, call
214 // trueSubset.installPixelRef(src.pixelRef(), subset);
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +0000215 trueSubset.setConfig(SkImageInfo::Make(W/2, H/2, gPairs[i].fColorType,
216 kPremul_SkAlphaType));
scroggo@google.com5ccae2c2014-01-15 16:56:52 +0000217 trueSubset.setPixelRef(src.pixelRef(), W/2, H/2);
218
219 subsetCopy.reset();
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +0000220 success = trueSubset.copyTo(&subsetCopy, gPairs[j].fColorType);
scroggo@google.com5ccae2c2014-01-15 16:56:52 +0000221 REPORTER_ASSERT(reporter, success == expected);
222 REPORTER_ASSERT(reporter, success == canSucceed);
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +0000223 TestIndividualCopy(reporter, gPairs[j].fColorType, success, trueSubset, subsetCopy,
scroggo@google.com5ccae2c2014-01-15 16:56:52 +0000224 false);
225
226 // deepCopyTo copies the entire pixelref, even if the bitmap only represents
227 // a subset. Therefore, the result should share the same genID.
228 subsetCopy.reset();
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +0000229 success = trueSubset.deepCopyTo(&subsetCopy, pairsConfig);
scroggo@google.com5ccae2c2014-01-15 16:56:52 +0000230 REPORTER_ASSERT(reporter, success == expected);
231 REPORTER_ASSERT(reporter, success == canSucceed);
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +0000232 TestIndividualCopy(reporter, gPairs[j].fColorType, success, trueSubset, subsetCopy,
scroggo@google.com5ccae2c2014-01-15 16:56:52 +0000233 true);
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000234 }
235 } // for (size_t j = ...
commit-bot@chromium.org6285f4f2014-02-20 19:08:07 +0000236#endif
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000237 } // for (size_t i = ...
238 } // GrContextFactory::GLContextType
scroggo@google.comd5764e82012-08-22 15:00:05 +0000239}
240
scroggo@google.com825bb952012-08-22 15:14:43 +0000241#endif