blob: fda05655594b0c3a076f5f6f0edb73727fedd067 [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"
22#include "ops/GrRectOpFactory.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 Salomon649a3412017-03-09 13:50:43 -0500135 std::unique_ptr<GrMeshDrawOp> op(GrRectOpFactory::MakeNonAAFill(
Brian Salomon6a639042016-12-14 11:08:17 -0500136 GrColor_WHITE, viewMatrix, renderRect, nullptr, nullptr));
Brian Salomon649a3412017-03-09 13:50:43 -0500137 renderTargetContext->priv().testingOnly_addMeshDrawOp(
Brian Salomon82f44312017-01-11 13:42:54 -0500138 std::move(grPaint), GrAAType::kNone, std::move(op));
bsalomonbcf0a522014-10-08 08:40:09 -0700139 }
140 x += renderRect.width() + kTestPad;
141 }
sugoi24dcac22014-07-07 15:09:48 -0700142 }
bsalomonbcf0a522014-10-08 08:40:09 -0700143 }
sugoi24dcac22014-07-07 15:09:48 -0700144
145private:
146 SkBitmap fBmp[3];
147
148 typedef GM INHERITED;
149};
150
halcanary385fe4d2015-08-26 13:07:48 -0700151DEF_GM(return new YUVtoRGBEffect;)
jbaumanb445a572016-06-09 13:24:48 -0700152
153//////////////////////////////////////////////////////////////////////////////
154
155class YUVNV12toRGBEffect : public GM {
156public:
157 YUVNV12toRGBEffect() {
158 this->setBGColor(0xFFFFFFFF);
159 }
160
161protected:
162 SkString onShortName() override {
163 return SkString("yuv_nv12_to_rgb_effect");
164 }
165
166 SkISize onISize() override {
167 return SkISize::Make(48, 120);
168 }
169
170 void onOnceBeforeDraw() override {
171 SkImageInfo yinfo = SkImageInfo::MakeA8(YSIZE, YSIZE);
172 fBmp[0].allocPixels(yinfo);
173 SkImageInfo uvinfo = SkImageInfo::MakeN32Premul(USIZE, USIZE);
174 fBmp[1].allocPixels(uvinfo);
175 int color[] = {0, 85, 170};
176 const int limit[] = {255, 0, 255};
177 const int invl[] = {0, 255, 0};
178 const int inc[] = {1, -1, 1};
179
180 {
181 unsigned char* pixels = (unsigned char*)fBmp[0].getPixels();
182 const size_t nbBytes = fBmp[0].rowBytes() * fBmp[0].height();
183 for (size_t j = 0; j < nbBytes; ++j) {
184 pixels[j] = (unsigned char)color[0];
185 color[0] = (color[0] == limit[0]) ? invl[0] : color[0] + inc[0];
186 }
187 }
188
189 {
190 for (int y = 0; y < fBmp[1].height(); ++y) {
191 uint32_t* pixels = fBmp[1].getAddr32(0, y);
192 for (int j = 0; j < fBmp[1].width(); ++j) {
193 pixels[j] = SkColorSetARGB(0, color[1], color[2], 0);
194 color[1] = (color[1] == limit[1]) ? invl[1] : color[1] + inc[1];
195 color[2] = (color[2] == limit[2]) ? invl[2] : color[2] + inc[2];
196 }
197 }
198 }
199 }
200
201 void onDraw(SkCanvas* canvas) override {
Brian Osman11052242016-10-27 14:47:55 -0400202 GrRenderTargetContext* renderTargetContext =
203 canvas->internal_private_accessTopLayerRenderTargetContext();
204 if (!renderTargetContext) {
jbaumanb445a572016-06-09 13:24:48 -0700205 skiagm::GM::DrawGpuOnlyMessage(canvas);
206 return;
207 }
208
209 GrContext* context = canvas->getGrContext();
210 if (!context) {
211 return;
212 }
213
Robert Phillips2f493142017-03-02 18:18:38 -0500214 sk_sp<GrTextureProxy> proxy[3];
jbaumanb445a572016-06-09 13:24:48 -0700215
Robert Phillipsbc7a4fb2017-01-23 15:30:35 -0500216 {
217 GrSurfaceDesc desc;
218 desc.fOrigin = kTopLeft_GrSurfaceOrigin;
219
220 for (int i = 0; i < 3; ++i) {
221 int index = (0 == i) ? 0 : 1;
222
Robert Phillipsbc7a4fb2017-01-23 15:30:35 -0500223 desc.fWidth = fBmp[index].width();
224 desc.fHeight = fBmp[index].height();
Robert Phillips40fd7c92017-01-30 08:06:27 -0500225 desc.fConfig = SkImageInfo2GrPixelConfig(fBmp[index].info(), *context->caps());
Robert Phillipsbc7a4fb2017-01-23 15:30:35 -0500226
Robert Phillips26c90e02017-03-14 14:39:29 -0400227 proxy[i] = GrSurfaceProxy::MakeDeferred(context->resourceProvider(),
Robert Phillipsbc7a4fb2017-01-23 15:30:35 -0500228 desc, SkBudgeted::kYes,
229 fBmp[index].getPixels(),
230 fBmp[index].rowBytes());
231 if (!proxy[i]) {
232 return;
233 }
234 }
jbaumanb445a572016-06-09 13:24:48 -0700235 }
236
mtkleindbfd7ab2016-09-01 11:24:54 -0700237 constexpr SkScalar kDrawPad = 10.f;
238 constexpr SkScalar kTestPad = 10.f;
239 constexpr SkScalar kColorSpaceOffset = 36.f;
jbaumanb445a572016-06-09 13:24:48 -0700240 SkISize sizes[3] = {{YSIZE, YSIZE}, {USIZE, USIZE}, {VSIZE, VSIZE}};
241
242 for (int space = kJPEG_SkYUVColorSpace; space <= kLastEnum_SkYUVColorSpace; ++space) {
243 SkRect renderRect =
244 SkRect::MakeWH(SkIntToScalar(fBmp[0].width()), SkIntToScalar(fBmp[0].height()));
245 renderRect.outset(kDrawPad, kDrawPad);
246
247 SkScalar y = kDrawPad + kTestPad + space * kColorSpaceOffset;
248 SkScalar x = kDrawPad + kTestPad;
249
robertphillips28a838e2016-06-23 14:07:00 -0700250 GrPaint grPaint;
Brian Salomona1633922017-01-09 11:46:10 -0500251 grPaint.setXPFactory(GrPorterDuffXPFactory::Get(SkBlendMode::kSrc));
jbaumanb445a572016-06-09 13:24:48 -0700252 sk_sp<GrFragmentProcessor> fp(
Robert Phillips296b1cc2017-03-15 10:42:12 -0400253 GrYUVEffect::MakeYUVToRGB(context->resourceProvider(),
254 proxy[0], proxy[1], proxy[2], sizes,
255 static_cast<SkYUVColorSpace>(space), true));
jbaumanb445a572016-06-09 13:24:48 -0700256 if (fp) {
257 SkMatrix viewMatrix;
258 viewMatrix.setTranslate(x, y);
robertphillips28a838e2016-06-23 14:07:00 -0700259 grPaint.addColorFragmentProcessor(fp);
Brian Salomon649a3412017-03-09 13:50:43 -0500260 std::unique_ptr<GrMeshDrawOp> op(GrRectOpFactory::MakeNonAAFill(
Brian Salomonf8334782017-01-03 09:42:58 -0500261 GrColor_WHITE, viewMatrix, renderRect, nullptr, nullptr));
Brian Salomon649a3412017-03-09 13:50:43 -0500262 renderTargetContext->priv().testingOnly_addMeshDrawOp(
263 std::move(grPaint), GrAAType::kNone, std::move(op));
jbaumanb445a572016-06-09 13:24:48 -0700264 }
265 }
266 }
267
268private:
269 SkBitmap fBmp[2];
270
271 typedef GM INHERITED;
272};
273
274DEF_GM(return new YUVNV12toRGBEffect;)
sugoi24dcac22014-07-07 15:09:48 -0700275}
276
277#endif