blob: eb2e42228629d7caf1ef5b7089ead53f73bcfc95 [file] [log] [blame]
sugoi24dcac22014-07-07 15:09:48 -07001/*
2 * Copyright 2014 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// This test only works with the GPU backend.
9
10#include "gm.h"
11
12#if SK_SUPPORT_GPU
13
14#include "GrContext.h"
Brian Osman11052242016-10-27 14:47:55 -040015#include "GrRenderTargetContextPriv.h"
Robert Phillipsbc7a4fb2017-01-23 15:30:35 -050016#include "GrTextureProxy.h"
sugoi24dcac22014-07-07 15:09:48 -070017#include "SkBitmap.h"
18#include "SkGr.h"
19#include "SkGradientShader.h"
bsalomonf267c1e2016-02-01 13:16:14 -080020#include "effects/GrYUVEffect.h"
Brian Salomon89527432016-12-16 09:52:16 -050021#include "ops/GrDrawOp.h"
Brian Salomonac70f842017-05-08 10:43:33 -040022#include "ops/GrNonAAFillRectOp.h"
sugoi24dcac22014-07-07 15:09:48 -070023
sugoi4ccce7e2015-02-13 13:57:09 -080024#define YSIZE 8
25#define USIZE 4
26#define VSIZE 4
27
sugoi24dcac22014-07-07 15:09:48 -070028namespace skiagm {
29/**
30 * This GM directly exercises GrYUVtoRGBEffect.
31 */
32class YUVtoRGBEffect : public GM {
33public:
34 YUVtoRGBEffect() {
35 this->setBGColor(0xFFFFFFFF);
36 }
37
38protected:
mtklein36352bf2015-03-25 18:17:31 -070039 SkString onShortName() override {
sugoi24dcac22014-07-07 15:09:48 -070040 return SkString("yuv_to_rgb_effect");
41 }
42
mtklein36352bf2015-03-25 18:17:31 -070043 SkISize onISize() override {
rileya13400392015-07-20 15:00:03 -070044 return SkISize::Make(238, 120);
sugoi24dcac22014-07-07 15:09:48 -070045 }
46
mtklein36352bf2015-03-25 18:17:31 -070047 void onOnceBeforeDraw() override {
sugoi4ccce7e2015-02-13 13:57:09 -080048 SkImageInfo yinfo = SkImageInfo::MakeA8(YSIZE, YSIZE);
49 fBmp[0].allocPixels(yinfo);
50 SkImageInfo uinfo = SkImageInfo::MakeA8(USIZE, USIZE);
51 fBmp[1].allocPixels(uinfo);
52 SkImageInfo vinfo = SkImageInfo::MakeA8(VSIZE, VSIZE);
53 fBmp[2].allocPixels(vinfo);
sugoi24dcac22014-07-07 15:09:48 -070054 unsigned char* pixels[3];
55 for (int i = 0; i < 3; ++i) {
56 pixels[i] = (unsigned char*)fBmp[i].getPixels();
57 }
58 int color[] = {0, 85, 170};
59 const int limit[] = {255, 0, 255};
60 const int invl[] = {0, 255, 0};
61 const int inc[] = {1, -1, 1};
sugoi4ccce7e2015-02-13 13:57:09 -080062 for (int i = 0; i < 3; ++i) {
63 const size_t nbBytes = fBmp[i].rowBytes() * fBmp[i].height();
64 for (size_t j = 0; j < nbBytes; ++j) {
sugoi24dcac22014-07-07 15:09:48 -070065 pixels[i][j] = (unsigned char)color[i];
66 color[i] = (color[i] == limit[i]) ? invl[i] : color[i] + inc[i];
67 }
68 }
69 }
70
mtklein36352bf2015-03-25 18:17:31 -070071 void onDraw(SkCanvas* canvas) override {
Brian Osman11052242016-10-27 14:47:55 -040072 GrRenderTargetContext* renderTargetContext =
73 canvas->internal_private_accessTopLayerRenderTargetContext();
74 if (!renderTargetContext) {
halcanary2a243382015-09-09 08:16:41 -070075 skiagm::GM::DrawGpuOnlyMessage(canvas);
Robert Phillipsbc7a4fb2017-01-23 15:30:35 -050076 return;
sugoi24dcac22014-07-07 15:09:48 -070077 }
78
robertphillips175dd9b2016-04-28 14:32:04 -070079 GrContext* context = canvas->getGrContext();
80 if (!context) {
sugoi24dcac22014-07-07 15:09:48 -070081 return;
82 }
83
Robert Phillips2f493142017-03-02 18:18:38 -050084 sk_sp<GrTextureProxy> proxy[3];
bsalomonbcf0a522014-10-08 08:40:09 -070085
Robert Phillipsbc7a4fb2017-01-23 15:30:35 -050086 {
87 GrSurfaceDesc desc;
88 desc.fOrigin = kTopLeft_GrSurfaceOrigin;
Robert Phillipsbc7a4fb2017-01-23 15:30:35 -050089
90 for (int i = 0; i < 3; ++i) {
91 desc.fWidth = fBmp[i].width();
92 desc.fHeight = fBmp[i].height();
Robert Phillips40fd7c92017-01-30 08:06:27 -050093 desc.fConfig = SkImageInfo2GrPixelConfig(fBmp[i].info(), *context->caps());
Robert Phillipsbc7a4fb2017-01-23 15:30:35 -050094
Robert Phillips26c90e02017-03-14 14:39:29 -040095 proxy[i] = GrSurfaceProxy::MakeDeferred(context->resourceProvider(),
Robert Phillipsbc7a4fb2017-01-23 15:30:35 -050096 desc, SkBudgeted::kYes,
97 fBmp[i].getPixels(), fBmp[i].rowBytes());
98 if (!proxy[i]) {
99 return;
100 }
101 }
sugoi24dcac22014-07-07 15:09:48 -0700102 }
103
mtkleindbfd7ab2016-09-01 11:24:54 -0700104 constexpr SkScalar kDrawPad = 10.f;
105 constexpr SkScalar kTestPad = 10.f;
106 constexpr SkScalar kColorSpaceOffset = 36.f;
sugoi4ccce7e2015-02-13 13:57:09 -0800107 SkISize sizes[3] = {{YSIZE, YSIZE}, {USIZE, USIZE}, {VSIZE, VSIZE}};
sugoi24dcac22014-07-07 15:09:48 -0700108
Robert Phillipsbc7a4fb2017-01-23 15:30:35 -0500109 for (int space = kJPEG_SkYUVColorSpace; space <= kLastEnum_SkYUVColorSpace; ++space) {
bsalomonbcf0a522014-10-08 08:40:09 -0700110 SkRect renderRect = SkRect::MakeWH(SkIntToScalar(fBmp[0].width()),
111 SkIntToScalar(fBmp[0].height()));
112 renderRect.outset(kDrawPad, kDrawPad);
sugoi24dcac22014-07-07 15:09:48 -0700113
bsalomonbcf0a522014-10-08 08:40:09 -0700114 SkScalar y = kDrawPad + kTestPad + space * kColorSpaceOffset;
115 SkScalar x = kDrawPad + kTestPad;
sugoi24dcac22014-07-07 15:09:48 -0700116
bsalomonbcf0a522014-10-08 08:40:09 -0700117 const int indices[6][3] = {{0, 1, 2}, {0, 2, 1}, {1, 0, 2},
118 {1, 2, 0}, {2, 0, 1}, {2, 1, 0}};
sugoi24dcac22014-07-07 15:09:48 -0700119
bsalomonbcf0a522014-10-08 08:40:09 -0700120 for (int i = 0; i < 6; ++i) {
Hal Canarycefc4312016-11-04 16:26:16 -0400121 sk_sp<GrFragmentProcessor> fp(
Robert Phillips296b1cc2017-03-15 10:42:12 -0400122 GrYUVEffect::MakeYUVToRGB(context->resourceProvider(),
Robert Phillips2f493142017-03-02 18:18:38 -0500123 proxy[indices[i][0]],
124 proxy[indices[i][1]],
125 proxy[indices[i][2]],
Hal Canarycefc4312016-11-04 16:26:16 -0400126 sizes,
127 static_cast<SkYUVColorSpace>(space),
128 false));
bsalomonbcf0a522014-10-08 08:40:09 -0700129 if (fp) {
Brian Salomon82f44312017-01-11 13:42:54 -0500130 GrPaint grPaint;
131 grPaint.setXPFactory(GrPorterDuffXPFactory::Get(SkBlendMode::kSrc));
132 grPaint.addColorFragmentProcessor(std::move(fp));
bsalomonbcf0a522014-10-08 08:40:09 -0700133 SkMatrix viewMatrix;
134 viewMatrix.setTranslate(x, y);
Brian Salomonac70f842017-05-08 10:43:33 -0400135 renderTargetContext->priv().testingOnly_addDrawOp(
136 GrNonAAFillRectOp::Make(std::move(grPaint), viewMatrix, renderRect,
137 nullptr, nullptr, GrAAType::kNone));
bsalomonbcf0a522014-10-08 08:40:09 -0700138 }
139 x += renderRect.width() + kTestPad;
140 }
sugoi24dcac22014-07-07 15:09:48 -0700141 }
bsalomonbcf0a522014-10-08 08:40:09 -0700142 }
sugoi24dcac22014-07-07 15:09:48 -0700143
144private:
145 SkBitmap fBmp[3];
146
147 typedef GM INHERITED;
148};
149
halcanary385fe4d2015-08-26 13:07:48 -0700150DEF_GM(return new YUVtoRGBEffect;)
jbaumanb445a572016-06-09 13:24:48 -0700151
152//////////////////////////////////////////////////////////////////////////////
153
154class YUVNV12toRGBEffect : public GM {
155public:
156 YUVNV12toRGBEffect() {
157 this->setBGColor(0xFFFFFFFF);
158 }
159
160protected:
161 SkString onShortName() override {
162 return SkString("yuv_nv12_to_rgb_effect");
163 }
164
165 SkISize onISize() override {
166 return SkISize::Make(48, 120);
167 }
168
169 void onOnceBeforeDraw() override {
170 SkImageInfo yinfo = SkImageInfo::MakeA8(YSIZE, YSIZE);
171 fBmp[0].allocPixels(yinfo);
172 SkImageInfo uvinfo = SkImageInfo::MakeN32Premul(USIZE, USIZE);
173 fBmp[1].allocPixels(uvinfo);
174 int color[] = {0, 85, 170};
175 const int limit[] = {255, 0, 255};
176 const int invl[] = {0, 255, 0};
177 const int inc[] = {1, -1, 1};
178
179 {
180 unsigned char* pixels = (unsigned char*)fBmp[0].getPixels();
181 const size_t nbBytes = fBmp[0].rowBytes() * fBmp[0].height();
182 for (size_t j = 0; j < nbBytes; ++j) {
183 pixels[j] = (unsigned char)color[0];
184 color[0] = (color[0] == limit[0]) ? invl[0] : color[0] + inc[0];
185 }
186 }
187
188 {
189 for (int y = 0; y < fBmp[1].height(); ++y) {
190 uint32_t* pixels = fBmp[1].getAddr32(0, y);
191 for (int j = 0; j < fBmp[1].width(); ++j) {
192 pixels[j] = SkColorSetARGB(0, color[1], color[2], 0);
193 color[1] = (color[1] == limit[1]) ? invl[1] : color[1] + inc[1];
194 color[2] = (color[2] == limit[2]) ? invl[2] : color[2] + inc[2];
195 }
196 }
197 }
198 }
199
200 void onDraw(SkCanvas* canvas) override {
Brian Osman11052242016-10-27 14:47:55 -0400201 GrRenderTargetContext* renderTargetContext =
202 canvas->internal_private_accessTopLayerRenderTargetContext();
203 if (!renderTargetContext) {
jbaumanb445a572016-06-09 13:24:48 -0700204 skiagm::GM::DrawGpuOnlyMessage(canvas);
205 return;
206 }
207
208 GrContext* context = canvas->getGrContext();
209 if (!context) {
210 return;
211 }
212
Robert Phillips2f493142017-03-02 18:18:38 -0500213 sk_sp<GrTextureProxy> proxy[3];
jbaumanb445a572016-06-09 13:24:48 -0700214
Robert Phillipsbc7a4fb2017-01-23 15:30:35 -0500215 {
216 GrSurfaceDesc desc;
217 desc.fOrigin = kTopLeft_GrSurfaceOrigin;
218
219 for (int i = 0; i < 3; ++i) {
220 int index = (0 == i) ? 0 : 1;
221
Robert Phillipsbc7a4fb2017-01-23 15:30:35 -0500222 desc.fWidth = fBmp[index].width();
223 desc.fHeight = fBmp[index].height();
Robert Phillips40fd7c92017-01-30 08:06:27 -0500224 desc.fConfig = SkImageInfo2GrPixelConfig(fBmp[index].info(), *context->caps());
Robert Phillipsbc7a4fb2017-01-23 15:30:35 -0500225
Robert Phillips26c90e02017-03-14 14:39:29 -0400226 proxy[i] = GrSurfaceProxy::MakeDeferred(context->resourceProvider(),
Robert Phillipsbc7a4fb2017-01-23 15:30:35 -0500227 desc, SkBudgeted::kYes,
228 fBmp[index].getPixels(),
229 fBmp[index].rowBytes());
230 if (!proxy[i]) {
231 return;
232 }
233 }
jbaumanb445a572016-06-09 13:24:48 -0700234 }
235
mtkleindbfd7ab2016-09-01 11:24:54 -0700236 constexpr SkScalar kDrawPad = 10.f;
237 constexpr SkScalar kTestPad = 10.f;
238 constexpr SkScalar kColorSpaceOffset = 36.f;
jbaumanb445a572016-06-09 13:24:48 -0700239 SkISize sizes[3] = {{YSIZE, YSIZE}, {USIZE, USIZE}, {VSIZE, VSIZE}};
240
241 for (int space = kJPEG_SkYUVColorSpace; space <= kLastEnum_SkYUVColorSpace; ++space) {
242 SkRect renderRect =
243 SkRect::MakeWH(SkIntToScalar(fBmp[0].width()), SkIntToScalar(fBmp[0].height()));
244 renderRect.outset(kDrawPad, kDrawPad);
245
246 SkScalar y = kDrawPad + kTestPad + space * kColorSpaceOffset;
247 SkScalar x = kDrawPad + kTestPad;
248
robertphillips28a838e2016-06-23 14:07:00 -0700249 GrPaint grPaint;
Brian Salomona1633922017-01-09 11:46:10 -0500250 grPaint.setXPFactory(GrPorterDuffXPFactory::Get(SkBlendMode::kSrc));
jbaumanb445a572016-06-09 13:24:48 -0700251 sk_sp<GrFragmentProcessor> fp(
Robert Phillips296b1cc2017-03-15 10:42:12 -0400252 GrYUVEffect::MakeYUVToRGB(context->resourceProvider(),
253 proxy[0], proxy[1], proxy[2], sizes,
254 static_cast<SkYUVColorSpace>(space), true));
jbaumanb445a572016-06-09 13:24:48 -0700255 if (fp) {
256 SkMatrix viewMatrix;
257 viewMatrix.setTranslate(x, y);
robertphillips28a838e2016-06-23 14:07:00 -0700258 grPaint.addColorFragmentProcessor(fp);
Brian Salomonac70f842017-05-08 10:43:33 -0400259 renderTargetContext->priv().testingOnly_addDrawOp(
260 GrNonAAFillRectOp::Make(std::move(grPaint), viewMatrix, renderRect, nullptr,
261 nullptr, GrAAType::kNone));
jbaumanb445a572016-06-09 13:24:48 -0700262 }
263 }
264 }
265
266private:
267 SkBitmap fBmp[2];
268
269 typedef GM INHERITED;
270};
271
272DEF_GM(return new YUVNV12toRGBEffect;)
sugoi24dcac22014-07-07 15:09:48 -0700273}
274
275#endif