blob: 62b651d0925fc54ec9dfa6a895a964e4babff3e0 [file] [log] [blame]
Robert Phillips3500b772017-01-27 10:11:42 -05001/*
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 "TestUtils.h"
9
Robert Phillips0bd24dc2018-01-16 08:06:32 -050010#include "GrProxyProvider.h"
Robert Phillips3500b772017-01-27 10:11:42 -050011#include "GrSurfaceContext.h"
Brian Salomon58389b92018-03-07 13:01:25 -050012#include "GrSurfaceContextPriv.h"
Robert Phillips3500b772017-01-27 10:11:42 -050013#include "GrSurfaceProxy.h"
Mike Reed84dd8572017-03-08 22:21:00 -050014#include "GrTextureProxy.h"
Brian Salomon58389b92018-03-07 13:01:25 -050015#include "ProxyUtils.h"
Brian Osman4408b1c2018-10-29 14:11:04 -040016#include "SkGr.h"
Michael Ludwige8e10752018-10-01 12:42:53 -040017#include "SkBase64.h"
18#include "SkPngEncoder.h"
Robert Phillips3500b772017-01-27 10:11:42 -050019
Robert Phillips26c90e02017-03-14 14:39:29 -040020void test_read_pixels(skiatest::Reporter* reporter,
Robert Phillips3500b772017-01-27 10:11:42 -050021 GrSurfaceContext* srcContext, uint32_t expectedPixelValues[],
22 const char* testName) {
23 int pixelCnt = srcContext->width() * srcContext->height();
24 SkAutoTMalloc<uint32_t> pixels(pixelCnt);
25 memset(pixels.get(), 0, sizeof(uint32_t)*pixelCnt);
26
27 SkImageInfo ii = SkImageInfo::Make(srcContext->width(), srcContext->height(),
28 kRGBA_8888_SkColorType, kPremul_SkAlphaType);
29 bool read = srcContext->readPixels(ii, pixels.get(), 0, 0, 0);
30 if (!read) {
31 ERRORF(reporter, "%s: Error reading from texture.", testName);
32 }
33
34 for (int i = 0; i < pixelCnt; ++i) {
35 if (pixels.get()[i] != expectedPixelValues[i]) {
36 ERRORF(reporter, "%s: Error, pixel value %d should be 0x%08x, got 0x%08x.",
37 testName, i, expectedPixelValues[i], pixels.get()[i]);
38 break;
39 }
40 }
41}
42
Robert Phillips26c90e02017-03-14 14:39:29 -040043void test_write_pixels(skiatest::Reporter* reporter,
Robert Phillips3500b772017-01-27 10:11:42 -050044 GrSurfaceContext* dstContext, bool expectedToWork,
45 const char* testName) {
46 int pixelCnt = dstContext->width() * dstContext->height();
47 SkAutoTMalloc<uint32_t> pixels(pixelCnt);
48 for (int y = 0; y < dstContext->width(); ++y) {
49 for (int x = 0; x < dstContext->height(); ++x) {
50 pixels.get()[y * dstContext->width() + x] =
Brian Osman4408b1c2018-10-29 14:11:04 -040051 SkColorToPremulGrColor(SkColorSetARGB(2*y, x, y, x + y));
Robert Phillips3500b772017-01-27 10:11:42 -050052 }
53 }
54
55 SkImageInfo ii = SkImageInfo::Make(dstContext->width(), dstContext->height(),
56 kRGBA_8888_SkColorType, kPremul_SkAlphaType);
57 bool write = dstContext->writePixels(ii, pixels.get(), 0, 0, 0);
58 if (!write) {
59 if (expectedToWork) {
60 ERRORF(reporter, "%s: Error writing to texture.", testName);
61 }
62 return;
63 }
64
65 if (write && !expectedToWork) {
66 ERRORF(reporter, "%s: writePixels succeeded when it wasn't supposed to.", testName);
67 return;
68 }
69
Robert Phillips26c90e02017-03-14 14:39:29 -040070 test_read_pixels(reporter, dstContext, pixels.get(), testName);
Robert Phillips3500b772017-01-27 10:11:42 -050071}
72
73void test_copy_from_surface(skiatest::Reporter* reporter, GrContext* context,
74 GrSurfaceProxy* proxy, uint32_t expectedPixelValues[],
75 bool onlyTestRTConfig, const char* testName) {
76 GrSurfaceDesc copyDstDesc;
Robert Phillips3500b772017-01-27 10:11:42 -050077 copyDstDesc.fWidth = proxy->width();
78 copyDstDesc.fHeight = proxy->height();
Robert Phillips16d8ec62017-07-27 16:16:25 -040079 copyDstDesc.fConfig = kRGBA_8888_GrPixelConfig;
Robert Phillips3500b772017-01-27 10:11:42 -050080
81 for (auto flags : { kNone_GrSurfaceFlags, kRenderTarget_GrSurfaceFlag }) {
82 if (kNone_GrSurfaceFlags == flags && onlyTestRTConfig) {
83 continue;
84 }
85
86 copyDstDesc.fFlags = flags;
Brian Salomon2a4f9832018-03-03 22:43:43 -050087 auto origin = (kNone_GrSurfaceFlags == flags) ? kTopLeft_GrSurfaceOrigin
88 : kBottomLeft_GrSurfaceOrigin;
Robert Phillips3500b772017-01-27 10:11:42 -050089
Brian Salomon2a4f9832018-03-03 22:43:43 -050090 sk_sp<GrSurfaceContext> dstContext(
91 GrSurfaceProxy::TestCopy(context, copyDstDesc, origin, proxy));
Robert Phillips3500b772017-01-27 10:11:42 -050092
Robert Phillips26c90e02017-03-14 14:39:29 -040093 test_read_pixels(reporter, dstContext.get(), expectedPixelValues, testName);
Robert Phillips3500b772017-01-27 10:11:42 -050094 }
95}
96
Robert Phillips1afd4cd2018-01-08 13:40:32 -050097void test_copy_to_surface(skiatest::Reporter* reporter, GrProxyProvider* proxyProvider,
Robert Phillips3500b772017-01-27 10:11:42 -050098 GrSurfaceContext* dstContext, const char* testName) {
99
100 int pixelCnt = dstContext->width() * dstContext->height();
101 SkAutoTMalloc<uint32_t> pixels(pixelCnt);
102 for (int y = 0; y < dstContext->width(); ++y) {
103 for (int x = 0; x < dstContext->height(); ++x) {
104 pixels.get()[y * dstContext->width() + x] =
Brian Osman4408b1c2018-10-29 14:11:04 -0400105 SkColorToPremulGrColor(SkColorSetARGB(2*y, y, x, x * y));
Robert Phillips3500b772017-01-27 10:11:42 -0500106 }
107 }
108
Brian Salomon58389b92018-03-07 13:01:25 -0500109 for (auto isRT : {false, true}) {
110 for (auto origin : {kTopLeft_GrSurfaceOrigin, kBottomLeft_GrSurfaceOrigin}) {
111 auto src = sk_gpu_test::MakeTextureProxyFromData(
112 dstContext->surfPriv().getContext(), isRT, dstContext->width(),
113 dstContext->height(), GrColorType::kRGBA_8888, origin, pixels.get(), 0);
114 dstContext->copy(src.get());
115 test_read_pixels(reporter, dstContext, pixels.get(), testName);
116 }
Robert Phillips3500b772017-01-27 10:11:42 -0500117 }
118}
Timothy Liang760dbc42018-07-17 13:28:20 -0400119
120void fill_pixel_data(int width, int height, GrColor* data) {
121 for (int j = 0; j < height; ++j) {
122 for (int i = 0; i < width; ++i) {
123 unsigned int red = (unsigned int)(256.f * (i / (float)width));
124 unsigned int green = (unsigned int)(256.f * (j / (float)height));
125 data[i + j * width] = GrColorPackRGBA(red - (red >> 8), green - (green >> 8),
126 0xff, 0xff);
127 }
128 }
129}
130
131bool does_full_buffer_contain_correct_color(GrColor* srcBuffer,
132 GrColor* dstBuffer,
133 int width,
134 int height) {
135 GrColor* srcPtr = srcBuffer;
136 GrColor* dstPtr = dstBuffer;
137 for (int j = 0; j < height; ++j) {
138 for (int i = 0; i < width; ++i) {
139 if (srcPtr[i] != dstPtr[i]) {
140 return false;
141 }
142 }
143 srcPtr += width;
144 dstPtr += width;
145 }
146 return true;
147}
Michael Ludwige8e10752018-10-01 12:42:53 -0400148
149bool bitmap_to_base64_data_uri(const SkBitmap& bitmap, SkString* dst) {
150 SkPixmap pm;
151 if (!bitmap.peekPixels(&pm)) {
152 dst->set("peekPixels failed");
153 return false;
154 }
155
156 // We're going to embed this PNG in a data URI, so make it as small as possible
157 SkPngEncoder::Options options;
158 options.fFilterFlags = SkPngEncoder::FilterFlag::kAll;
159 options.fZLibLevel = 9;
160
161 SkDynamicMemoryWStream wStream;
162 if (!SkPngEncoder::Encode(&wStream, pm, options)) {
163 dst->set("SkPngEncoder::Encode failed");
164 return false;
165 }
166
167 sk_sp<SkData> pngData = wStream.detachAsData();
168 size_t len = SkBase64::Encode(pngData->data(), pngData->size(), nullptr);
169
170 // The PNG can be almost arbitrarily large. We don't want to fill our logs with enormous URLs.
171 // Infra says these can be pretty big, as long as we're only outputting them on failure.
172 static const size_t kMaxBase64Length = 1024 * 1024;
173 if (len > kMaxBase64Length) {
174 dst->printf("Encoded image too large (%u bytes)", static_cast<uint32_t>(len));
175 return false;
176 }
177
178 dst->resize(len);
179 SkBase64::Encode(pngData->data(), pngData->size(), dst->writable_str());
180 dst->prepend("data:image/png;base64,");
181 return true;
182}