• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2017 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 
8 #include "tests/TestUtils.h"
9 
10 #include "include/encode/SkPngEncoder.h"
11 #include "include/utils/SkBase64.h"
12 #include "src/core/SkUtils.h"
13 #include "src/gpu/GrContextPriv.h"
14 #include "src/gpu/GrDrawingManager.h"
15 #include "src/gpu/GrGpu.h"
16 #include "src/gpu/GrImageInfo.h"
17 #include "src/gpu/GrSurfaceContext.h"
18 #include "src/gpu/GrSurfaceProxy.h"
19 #include "src/gpu/GrTextureProxy.h"
20 #include "src/gpu/SkGr.h"
21 
TestReadPixels(skiatest::Reporter * reporter,GrSurfaceContext * srcContext,uint32_t expectedPixelValues[],const char * testName)22 void TestReadPixels(skiatest::Reporter* reporter,
23                     GrSurfaceContext* srcContext,
24                     uint32_t expectedPixelValues[],
25                     const char* testName) {
26     int pixelCnt = srcContext->width() * srcContext->height();
27     SkAutoTMalloc<uint32_t> pixels(pixelCnt);
28     memset(pixels.get(), 0, sizeof(uint32_t)*pixelCnt);
29 
30     SkImageInfo ii = SkImageInfo::Make(srcContext->width(), srcContext->height(),
31                                        kRGBA_8888_SkColorType, kPremul_SkAlphaType);
32     bool read = srcContext->readPixels(ii, pixels.get(), 0, {0, 0});
33     if (!read) {
34         ERRORF(reporter, "%s: Error reading from texture.", testName);
35     }
36 
37     for (int i = 0; i < pixelCnt; ++i) {
38         if (pixels.get()[i] != expectedPixelValues[i]) {
39             ERRORF(reporter, "%s: Error, pixel value %d should be 0x%08x, got 0x%08x.",
40                    testName, i, expectedPixelValues[i], pixels.get()[i]);
41             break;
42         }
43     }
44 }
45 
TestWritePixels(skiatest::Reporter * reporter,GrSurfaceContext * dstContext,bool expectedToWork,const char * testName)46 void TestWritePixels(skiatest::Reporter* reporter,
47                      GrSurfaceContext* dstContext,
48                      bool expectedToWork,
49                      const char* testName) {
50     int pixelCnt = dstContext->width() * dstContext->height();
51     SkAutoTMalloc<uint32_t> pixels(pixelCnt);
52     for (int y = 0; y < dstContext->width(); ++y) {
53         for (int x = 0; x < dstContext->height(); ++x) {
54             pixels.get()[y * dstContext->width() + x] =
55                 SkColorToPremulGrColor(SkColorSetARGB(2*y, x, y, x + y));
56         }
57     }
58 
59     SkImageInfo ii = SkImageInfo::Make(dstContext->width(), dstContext->height(),
60                                        kRGBA_8888_SkColorType, kPremul_SkAlphaType);
61     bool write = dstContext->writePixels(ii, pixels.get(), 0, {0, 0});
62     if (!write) {
63         if (expectedToWork) {
64             ERRORF(reporter, "%s: Error writing to texture.", testName);
65         }
66         return;
67     }
68 
69     if (write && !expectedToWork) {
70         ERRORF(reporter, "%s: writePixels succeeded when it wasn't supposed to.", testName);
71         return;
72     }
73 
74     TestReadPixels(reporter, dstContext, pixels.get(), testName);
75 }
76 
TestCopyFromSurface(skiatest::Reporter * reporter,GrContext * context,GrSurfaceProxy * proxy,GrSurfaceOrigin origin,GrColorType colorType,uint32_t expectedPixelValues[],const char * testName)77 void TestCopyFromSurface(skiatest::Reporter* reporter,
78                          GrContext* context,
79                          GrSurfaceProxy* proxy,
80                          GrSurfaceOrigin origin,
81                          GrColorType colorType,
82                          uint32_t expectedPixelValues[],
83                          const char* testName) {
84     GrSurfaceProxyView view = GrSurfaceProxy::Copy(context, proxy, origin, colorType,
85                                                    GrMipMapped::kNo, SkBackingFit::kExact,
86                                                    SkBudgeted::kYes);
87     SkASSERT(view.asTextureProxy());
88 
89     auto dstContext = GrSurfaceContext::Make(context, std::move(view), colorType,
90                                              kPremul_SkAlphaType, nullptr);
91     SkASSERT(dstContext);
92 
93     TestReadPixels(reporter, dstContext.get(), expectedPixelValues, testName);
94 }
95 
FillPixelData(int width,int height,GrColor * data)96 void FillPixelData(int width, int height, GrColor* data) {
97     for (int j = 0; j < height; ++j) {
98         for (int i = 0; i < width; ++i) {
99             unsigned int red = (unsigned int)(256.f * (i / (float)width));
100             unsigned int green = (unsigned int)(256.f * (j / (float)height));
101             data[i + j * width] = GrColorPackRGBA(red - (red >> 8), green - (green >> 8),
102                                                   0xff, 0xff);
103         }
104     }
105 }
106 
CreateBackendTexture(GrContext * context,GrBackendTexture * backendTex,const SkImageInfo & ii,const SkColor4f & color,GrMipMapped mipMapped,GrRenderable renderable)107 bool CreateBackendTexture(GrContext* context,
108                           GrBackendTexture* backendTex,
109                           const SkImageInfo& ii,
110                           const SkColor4f& color,
111                           GrMipMapped mipMapped,
112                           GrRenderable renderable) {
113     *backendTex = context->createBackendTexture(ii.width(), ii.height(), ii.colorType(),
114                                                 color, mipMapped, renderable);
115     return backendTex->isValid();
116 }
117 
DeleteBackendTexture(GrContext * context,const GrBackendTexture & backendTex)118 void DeleteBackendTexture(GrContext* context, const GrBackendTexture& backendTex) {
119     GrFlushInfo flushInfo;
120     flushInfo.fFlags = kSyncCpu_GrFlushFlag;
121     context->flush(flushInfo);
122     context->deleteBackendTexture(backendTex);
123 }
124 
DoesFullBufferContainCorrectColor(const GrColor * srcBuffer,const GrColor * dstBuffer,int width,int height)125 bool DoesFullBufferContainCorrectColor(const GrColor* srcBuffer,
126                                        const GrColor* dstBuffer,
127                                        int width, int height) {
128     const GrColor* srcPtr = srcBuffer;
129     const GrColor* dstPtr = dstBuffer;
130     for (int j = 0; j < height; ++j) {
131         for (int i = 0; i < width; ++i) {
132             if (srcPtr[i] != dstPtr[i]) {
133                 return false;
134             }
135         }
136         srcPtr += width;
137         dstPtr += width;
138     }
139     return true;
140 }
141 
BipmapToBase64DataURI(const SkBitmap & bitmap,SkString * dst)142 bool BipmapToBase64DataURI(const SkBitmap& bitmap, SkString* dst) {
143     SkPixmap pm;
144     if (!bitmap.peekPixels(&pm)) {
145         dst->set("peekPixels failed");
146         return false;
147     }
148 
149     // We're going to embed this PNG in a data URI, so make it as small as possible
150     SkPngEncoder::Options options;
151     options.fFilterFlags = SkPngEncoder::FilterFlag::kAll;
152     options.fZLibLevel = 9;
153 
154     SkDynamicMemoryWStream wStream;
155     if (!SkPngEncoder::Encode(&wStream, pm, options)) {
156         dst->set("SkPngEncoder::Encode failed");
157         return false;
158     }
159 
160     sk_sp<SkData> pngData = wStream.detachAsData();
161     size_t len = SkBase64::Encode(pngData->data(), pngData->size(), nullptr);
162 
163     // The PNG can be almost arbitrarily large. We don't want to fill our logs with enormous URLs.
164     // Infra says these can be pretty big, as long as we're only outputting them on failure.
165     static const size_t kMaxBase64Length = 1024 * 1024;
166     if (len > kMaxBase64Length) {
167         dst->printf("Encoded image too large (%u bytes)", static_cast<uint32_t>(len));
168         return false;
169     }
170 
171     dst->resize(len);
172     SkBase64::Encode(pngData->data(), pngData->size(), dst->writable_str());
173     dst->prepend("data:image/png;base64,");
174     return true;
175 }
176 
177 using AccessPixelFn = const float*(const char* floatBuffer, int x, int y);
178 
compare_pixels(int width,int height,const char * floatA,std::function<AccessPixelFn> & atA,const char * floatB,std::function<AccessPixelFn> & atB,const float tolRGBA[4],std::function<ComparePixmapsErrorReporter> & error)179 bool compare_pixels(int width, int height,
180                     const char* floatA, std::function<AccessPixelFn>& atA,
181                     const char* floatB, std::function<AccessPixelFn>& atB,
182                     const float tolRGBA[4], std::function<ComparePixmapsErrorReporter>& error) {
183 
184     for (int y = 0; y < height; ++y) {
185         for (int x = 0; x < width; ++x) {
186             const float* rgbaA = atA(floatA, x, y);
187             const float* rgbaB = atB(floatB, x, y);
188             float diffs[4];
189             bool bad = false;
190             for (int i = 0; i < 4; ++i) {
191                 diffs[i] = rgbaB[i] - rgbaA[i];
192                 if (std::abs(diffs[i]) > std::abs(tolRGBA[i])) {
193                     bad = true;
194                 }
195             }
196             if (bad) {
197                 error(x, y, diffs);
198                 return false;
199             }
200         }
201     }
202     return true;
203 }
204 
ComparePixels(const GrImageInfo & infoA,const char * a,size_t rowBytesA,const GrImageInfo & infoB,const char * b,size_t rowBytesB,const float tolRGBA[4],std::function<ComparePixmapsErrorReporter> & error)205 bool ComparePixels(const GrImageInfo& infoA, const char* a, size_t rowBytesA,
206                    const GrImageInfo& infoB, const char* b, size_t rowBytesB,
207                    const float tolRGBA[4], std::function<ComparePixmapsErrorReporter>& error) {
208     if (infoA.width() != infoB.width() || infoA.height() != infoB.height()) {
209         static constexpr float kDummyDiffs[4] = {};
210         error(-1, -1, kDummyDiffs);
211         return false;
212     }
213 
214     SkAlphaType floatAlphaType = infoA.alphaType();
215     // If one is premul and the other is unpremul we do the comparison in premul space.
216     if ((infoA.alphaType() == kPremul_SkAlphaType ||
217          infoB.alphaType() == kPremul_SkAlphaType) &&
218         (infoA.alphaType() == kUnpremul_SkAlphaType ||
219          infoB.alphaType() == kUnpremul_SkAlphaType)) {
220         floatAlphaType = kPremul_SkAlphaType;
221     }
222     sk_sp<SkColorSpace> floatCS;
223     if (SkColorSpace::Equals(infoA.colorSpace(), infoB.colorSpace())) {
224         floatCS = infoA.refColorSpace();
225     } else {
226         floatCS = SkColorSpace::MakeSRGBLinear();
227     }
228     GrImageInfo floatInfo(GrColorType::kRGBA_F32, floatAlphaType, std::move(floatCS),
229                           infoA.width(), infoA.height());
230 
231     size_t floatBpp = GrColorTypeBytesPerPixel(GrColorType::kRGBA_F32);
232     size_t floatRowBytes = floatBpp * infoA.width();
233     std::unique_ptr<char[]> floatA(new char[floatRowBytes * infoA.height()]);
234     std::unique_ptr<char[]> floatB(new char[floatRowBytes * infoA.height()]);
235     SkAssertResult(GrConvertPixels(floatInfo, floatA.get(), floatRowBytes, infoA, a, rowBytesA));
236     SkAssertResult(GrConvertPixels(floatInfo, floatB.get(), floatRowBytes, infoB, b, rowBytesB));
237 
238     auto at = std::function<AccessPixelFn>(
239         [floatBpp, floatRowBytes](const char* floatBuffer, int x, int y) {
240             return reinterpret_cast<const float*>(floatBuffer + y * floatRowBytes + x * floatBpp);
241         });
242 
243     return compare_pixels(infoA.width(), infoA.height(),
244                           floatA.get(), at, floatB.get(), at,
245                           tolRGBA, error);
246 }
247 
ComparePixels(const SkPixmap & a,const SkPixmap & b,const float tolRGBA[4],std::function<ComparePixmapsErrorReporter> & error)248 bool ComparePixels(const SkPixmap& a, const SkPixmap& b, const float tolRGBA[4],
249                    std::function<ComparePixmapsErrorReporter>& error) {
250     return ComparePixels(a.info(), static_cast<const char*>(a.addr()), a.rowBytes(),
251                          b.info(), static_cast<const char*>(b.addr()), b.rowBytes(),
252                          tolRGBA, error);
253 }
254 
CheckSolidPixels(const SkColor4f & col,const SkPixmap & pixmap,const float tolRGBA[4],std::function<ComparePixmapsErrorReporter> & error)255 bool CheckSolidPixels(const SkColor4f& col, const SkPixmap& pixmap,
256                       const float tolRGBA[4], std::function<ComparePixmapsErrorReporter>& error) {
257 
258     size_t floatBpp = GrColorTypeBytesPerPixel(GrColorType::kRGBA_F32);
259 
260     std::unique_ptr<char[]> floatA(new char[floatBpp]);
261     // First convert 'col' to be compatible with 'pixmap'
262     {
263         sk_sp<SkColorSpace> srcCS = SkColorSpace::MakeSRGBLinear();
264         GrImageInfo srcInfo(GrColorType::kRGBA_F32, kUnpremul_SkAlphaType, std::move(srcCS), 1, 1);
265         GrImageInfo dstInfo(GrColorType::kRGBA_F32, pixmap.alphaType(), pixmap.refColorSpace(), 1, 1);
266 
267         SkAssertResult(GrConvertPixels(dstInfo, floatA.get(), floatBpp, srcInfo,
268                                        col.vec(), floatBpp));
269     }
270 
271     size_t floatRowBytes = floatBpp * pixmap.width();
272     std::unique_ptr<char[]> floatB(new char[floatRowBytes * pixmap.height()]);
273     // Then convert 'pixmap' to RGBA_F32
274     {
275         GrImageInfo dstInfo(GrColorType::kRGBA_F32, pixmap.alphaType(), pixmap.refColorSpace(),
276                             pixmap.width(), pixmap.height());
277 
278         SkAssertResult(GrConvertPixels(dstInfo, floatB.get(), floatRowBytes, pixmap.info(),
279                                        pixmap.addr(), pixmap.rowBytes()));
280     }
281 
282     auto atA = std::function<AccessPixelFn>(
283         [](const char* floatBuffer, int /* x */, int /* y */) {
284             return reinterpret_cast<const float*>(floatBuffer);
285         });
286 
287     auto atB = std::function<AccessPixelFn>(
288         [floatBpp, floatRowBytes](const char* floatBuffer, int x, int y) {
289             return reinterpret_cast<const float*>(floatBuffer + y * floatRowBytes + x * floatBpp);
290         });
291 
292     return compare_pixels(pixmap.width(), pixmap.height(), floatA.get(), atA, floatB.get(), atB,
293                           tolRGBA, error);
294 }
295 
CheckSingleThreadedProxyRefs(skiatest::Reporter * reporter,GrSurfaceProxy * proxy,int32_t expectedProxyRefs,int32_t expectedBackingRefs)296 void CheckSingleThreadedProxyRefs(skiatest::Reporter* reporter,
297                                   GrSurfaceProxy* proxy,
298                                   int32_t expectedProxyRefs,
299                                   int32_t expectedBackingRefs) {
300     int32_t actualBackingRefs = proxy->testingOnly_getBackingRefCnt();
301 
302     REPORTER_ASSERT(reporter, proxy->refCntGreaterThan(expectedProxyRefs - 1) &&
303                               !proxy->refCntGreaterThan(expectedProxyRefs));
304     REPORTER_ASSERT(reporter, actualBackingRefs == expectedBackingRefs);
305 }
306 
307 #include "src/utils/SkCharToGlyphCache.h"
308 
hash_to_glyph(uint32_t value)309 static SkGlyphID hash_to_glyph(uint32_t value) {
310     return SkToU16(((value >> 16) ^ value) & 0xFFFF);
311 }
312 
313 namespace {
314 class UnicharGen {
315     SkUnichar fU;
316     const int fStep;
317 public:
UnicharGen(int step)318     UnicharGen(int step) : fU(0), fStep(step) {}
319 
next()320     SkUnichar next() {
321         fU += fStep;
322         return fU;
323     }
324 };
325 }
326 
DEF_TEST(chartoglyph_cache,reporter)327 DEF_TEST(chartoglyph_cache, reporter) {
328     SkCharToGlyphCache cache;
329     const int step = 3;
330 
331     UnicharGen gen(step);
332     for (int i = 0; i < 500; ++i) {
333         SkUnichar c = gen.next();
334         SkGlyphID glyph = hash_to_glyph(c);
335 
336         int index = cache.findGlyphIndex(c);
337         if (index >= 0) {
338             index = cache.findGlyphIndex(c);
339         }
340         REPORTER_ASSERT(reporter, index < 0);
341         cache.insertCharAndGlyph(~index, c, glyph);
342 
343         UnicharGen gen2(step);
344         for (int j = 0; j <= i; ++j) {
345             c = gen2.next();
346             glyph = hash_to_glyph(c);
347             index = cache.findGlyphIndex(c);
348             if ((unsigned)index != glyph) {
349                 index = cache.findGlyphIndex(c);
350             }
351             REPORTER_ASSERT(reporter, (unsigned)index == glyph);
352         }
353     }
354 }
355