blob: d064cf3cf4b7e11e697ae2f64eb37383e0e4569f [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"
robertphillips391395d2016-03-02 09:26:36 -080015#include "GrDrawContextPriv.h"
sugoi24dcac22014-07-07 15:09:48 -070016#include "SkBitmap.h"
17#include "SkGr.h"
18#include "SkGradientShader.h"
joshualitt04194f32016-01-13 10:08:27 -080019#include "batches/GrDrawBatch.h"
20#include "batches/GrRectBatchFactory.h"
bsalomonf267c1e2016-02-01 13:16:14 -080021#include "effects/GrYUVEffect.h"
sugoi24dcac22014-07-07 15:09:48 -070022
sugoi4ccce7e2015-02-13 13:57:09 -080023#define YSIZE 8
24#define USIZE 4
25#define VSIZE 4
26
sugoi24dcac22014-07-07 15:09:48 -070027namespace skiagm {
28/**
29 * This GM directly exercises GrYUVtoRGBEffect.
30 */
31class YUVtoRGBEffect : public GM {
32public:
33 YUVtoRGBEffect() {
34 this->setBGColor(0xFFFFFFFF);
35 }
36
37protected:
mtklein36352bf2015-03-25 18:17:31 -070038 SkString onShortName() override {
sugoi24dcac22014-07-07 15:09:48 -070039 return SkString("yuv_to_rgb_effect");
40 }
41
mtklein36352bf2015-03-25 18:17:31 -070042 SkISize onISize() override {
rileya13400392015-07-20 15:00:03 -070043 return SkISize::Make(238, 120);
sugoi24dcac22014-07-07 15:09:48 -070044 }
45
mtklein36352bf2015-03-25 18:17:31 -070046 void onOnceBeforeDraw() override {
sugoi4ccce7e2015-02-13 13:57:09 -080047 SkImageInfo yinfo = SkImageInfo::MakeA8(YSIZE, YSIZE);
48 fBmp[0].allocPixels(yinfo);
49 SkImageInfo uinfo = SkImageInfo::MakeA8(USIZE, USIZE);
50 fBmp[1].allocPixels(uinfo);
51 SkImageInfo vinfo = SkImageInfo::MakeA8(VSIZE, VSIZE);
52 fBmp[2].allocPixels(vinfo);
sugoi24dcac22014-07-07 15:09:48 -070053 unsigned char* pixels[3];
54 for (int i = 0; i < 3; ++i) {
55 pixels[i] = (unsigned char*)fBmp[i].getPixels();
56 }
57 int color[] = {0, 85, 170};
58 const int limit[] = {255, 0, 255};
59 const int invl[] = {0, 255, 0};
60 const int inc[] = {1, -1, 1};
sugoi4ccce7e2015-02-13 13:57:09 -080061 for (int i = 0; i < 3; ++i) {
62 const size_t nbBytes = fBmp[i].rowBytes() * fBmp[i].height();
63 for (size_t j = 0; j < nbBytes; ++j) {
sugoi24dcac22014-07-07 15:09:48 -070064 pixels[i][j] = (unsigned char)color[i];
65 color[i] = (color[i] == limit[i]) ? invl[i] : color[i] + inc[i];
66 }
67 }
68 }
69
mtklein36352bf2015-03-25 18:17:31 -070070 void onDraw(SkCanvas* canvas) override {
robertphillips175dd9b2016-04-28 14:32:04 -070071 GrDrawContext* drawContext = canvas->internal_private_accessTopLayerDrawContext();
72 if (!drawContext) {
halcanary2a243382015-09-09 08:16:41 -070073 skiagm::GM::DrawGpuOnlyMessage(canvas);
robertphillips175dd9b2016-04-28 14:32:04 -070074 return;
sugoi24dcac22014-07-07 15:09:48 -070075 }
76
robertphillips175dd9b2016-04-28 14:32:04 -070077 GrContext* context = canvas->getGrContext();
78 if (!context) {
sugoi24dcac22014-07-07 15:09:48 -070079 return;
80 }
81
bsalomonbcf0a522014-10-08 08:40:09 -070082 SkAutoTUnref<GrTexture> texture[3];
bsalomonafa95e22015-10-12 10:39:46 -070083 texture[0].reset(GrRefCachedBitmapTexture(context, fBmp[0],
brianosman982eb7f2016-06-06 13:10:58 -070084 GrTextureParams::ClampBilerp(),
85 SkSourceGammaTreatment::kRespect));
bsalomonafa95e22015-10-12 10:39:46 -070086 texture[1].reset(GrRefCachedBitmapTexture(context, fBmp[1],
brianosman982eb7f2016-06-06 13:10:58 -070087 GrTextureParams::ClampBilerp(),
88 SkSourceGammaTreatment::kRespect));
bsalomonafa95e22015-10-12 10:39:46 -070089 texture[2].reset(GrRefCachedBitmapTexture(context, fBmp[2],
brianosman982eb7f2016-06-06 13:10:58 -070090 GrTextureParams::ClampBilerp(),
91 SkSourceGammaTreatment::kRespect));
bsalomonbcf0a522014-10-08 08:40:09 -070092
93 if (!texture[0] || !texture[1] || !texture[2]) {
sugoi24dcac22014-07-07 15:09:48 -070094 return;
95 }
96
mtkleindbfd7ab2016-09-01 11:24:54 -070097 constexpr SkScalar kDrawPad = 10.f;
98 constexpr SkScalar kTestPad = 10.f;
99 constexpr SkScalar kColorSpaceOffset = 36.f;
sugoi4ccce7e2015-02-13 13:57:09 -0800100 SkISize sizes[3] = {{YSIZE, YSIZE}, {USIZE, USIZE}, {VSIZE, VSIZE}};
sugoi24dcac22014-07-07 15:09:48 -0700101
rileyaabaef862014-09-12 17:45:58 -0700102 for (int space = kJPEG_SkYUVColorSpace; space <= kLastEnum_SkYUVColorSpace;
103 ++space) {
bsalomonbcf0a522014-10-08 08:40:09 -0700104 SkRect renderRect = SkRect::MakeWH(SkIntToScalar(fBmp[0].width()),
105 SkIntToScalar(fBmp[0].height()));
106 renderRect.outset(kDrawPad, kDrawPad);
sugoi24dcac22014-07-07 15:09:48 -0700107
bsalomonbcf0a522014-10-08 08:40:09 -0700108 SkScalar y = kDrawPad + kTestPad + space * kColorSpaceOffset;
109 SkScalar x = kDrawPad + kTestPad;
sugoi24dcac22014-07-07 15:09:48 -0700110
bsalomonbcf0a522014-10-08 08:40:09 -0700111 const int indices[6][3] = {{0, 1, 2}, {0, 2, 1}, {1, 0, 2},
112 {1, 2, 0}, {2, 0, 1}, {2, 1, 0}};
sugoi24dcac22014-07-07 15:09:48 -0700113
bsalomonbcf0a522014-10-08 08:40:09 -0700114 for (int i = 0; i < 6; ++i) {
robertphillips28a838e2016-06-23 14:07:00 -0700115 GrPaint grPaint;
116 grPaint.setXPFactory(GrPorterDuffXPFactory::Make(SkXfermode::kSrc_Mode));
jbaumanb445a572016-06-09 13:24:48 -0700117 sk_sp<GrFragmentProcessor> fp(GrYUVEffect::MakeYUVToRGB(
118 texture[indices[i][0]], texture[indices[i][1]], texture[indices[i][2]], sizes,
119 static_cast<SkYUVColorSpace>(space), false));
bsalomonbcf0a522014-10-08 08:40:09 -0700120 if (fp) {
121 SkMatrix viewMatrix;
122 viewMatrix.setTranslate(x, y);
robertphillips28a838e2016-06-23 14:07:00 -0700123 grPaint.addColorFragmentProcessor(std::move(fp));
joshualitt04194f32016-01-13 10:08:27 -0800124 SkAutoTUnref<GrDrawBatch> batch(
125 GrRectBatchFactory::CreateNonAAFill(GrColor_WHITE, viewMatrix,
126 renderRect, nullptr, nullptr));
robertphillips28a838e2016-06-23 14:07:00 -0700127 drawContext->drawContextPriv().testingOnly_drawBatch(grPaint, batch);
bsalomonbcf0a522014-10-08 08:40:09 -0700128 }
129 x += renderRect.width() + kTestPad;
130 }
sugoi24dcac22014-07-07 15:09:48 -0700131 }
bsalomonbcf0a522014-10-08 08:40:09 -0700132 }
sugoi24dcac22014-07-07 15:09:48 -0700133
134private:
135 SkBitmap fBmp[3];
136
137 typedef GM INHERITED;
138};
139
halcanary385fe4d2015-08-26 13:07:48 -0700140DEF_GM(return new YUVtoRGBEffect;)
jbaumanb445a572016-06-09 13:24:48 -0700141
142//////////////////////////////////////////////////////////////////////////////
143
144class YUVNV12toRGBEffect : public GM {
145public:
146 YUVNV12toRGBEffect() {
147 this->setBGColor(0xFFFFFFFF);
148 }
149
150protected:
151 SkString onShortName() override {
152 return SkString("yuv_nv12_to_rgb_effect");
153 }
154
155 SkISize onISize() override {
156 return SkISize::Make(48, 120);
157 }
158
159 void onOnceBeforeDraw() override {
160 SkImageInfo yinfo = SkImageInfo::MakeA8(YSIZE, YSIZE);
161 fBmp[0].allocPixels(yinfo);
162 SkImageInfo uvinfo = SkImageInfo::MakeN32Premul(USIZE, USIZE);
163 fBmp[1].allocPixels(uvinfo);
164 int color[] = {0, 85, 170};
165 const int limit[] = {255, 0, 255};
166 const int invl[] = {0, 255, 0};
167 const int inc[] = {1, -1, 1};
168
169 {
170 unsigned char* pixels = (unsigned char*)fBmp[0].getPixels();
171 const size_t nbBytes = fBmp[0].rowBytes() * fBmp[0].height();
172 for (size_t j = 0; j < nbBytes; ++j) {
173 pixels[j] = (unsigned char)color[0];
174 color[0] = (color[0] == limit[0]) ? invl[0] : color[0] + inc[0];
175 }
176 }
177
178 {
179 for (int y = 0; y < fBmp[1].height(); ++y) {
180 uint32_t* pixels = fBmp[1].getAddr32(0, y);
181 for (int j = 0; j < fBmp[1].width(); ++j) {
182 pixels[j] = SkColorSetARGB(0, color[1], color[2], 0);
183 color[1] = (color[1] == limit[1]) ? invl[1] : color[1] + inc[1];
184 color[2] = (color[2] == limit[2]) ? invl[2] : color[2] + inc[2];
185 }
186 }
187 }
188 }
189
190 void onDraw(SkCanvas* canvas) override {
191 GrDrawContext* drawContext = canvas->internal_private_accessTopLayerDrawContext();
192 if (!drawContext) {
193 skiagm::GM::DrawGpuOnlyMessage(canvas);
194 return;
195 }
196
197 GrContext* context = canvas->getGrContext();
198 if (!context) {
199 return;
200 }
201
202 SkAutoTUnref<GrTexture> texture[3];
203 texture[0].reset(GrRefCachedBitmapTexture(context, fBmp[0], GrTextureParams::ClampBilerp(),
204 SkSourceGammaTreatment::kRespect));
205 texture[1].reset(GrRefCachedBitmapTexture(context, fBmp[1], GrTextureParams::ClampBilerp(),
206 SkSourceGammaTreatment::kRespect));
207 texture[2].reset(GrRefCachedBitmapTexture(context, fBmp[1], GrTextureParams::ClampBilerp(),
208 SkSourceGammaTreatment::kRespect));
209
210 if (!texture[0] || !texture[1] || !texture[2]) {
211 return;
212 }
213
mtkleindbfd7ab2016-09-01 11:24:54 -0700214 constexpr SkScalar kDrawPad = 10.f;
215 constexpr SkScalar kTestPad = 10.f;
216 constexpr SkScalar kColorSpaceOffset = 36.f;
jbaumanb445a572016-06-09 13:24:48 -0700217 SkISize sizes[3] = {{YSIZE, YSIZE}, {USIZE, USIZE}, {VSIZE, VSIZE}};
218
219 for (int space = kJPEG_SkYUVColorSpace; space <= kLastEnum_SkYUVColorSpace; ++space) {
220 SkRect renderRect =
221 SkRect::MakeWH(SkIntToScalar(fBmp[0].width()), SkIntToScalar(fBmp[0].height()));
222 renderRect.outset(kDrawPad, kDrawPad);
223
224 SkScalar y = kDrawPad + kTestPad + space * kColorSpaceOffset;
225 SkScalar x = kDrawPad + kTestPad;
226
robertphillips28a838e2016-06-23 14:07:00 -0700227 GrPaint grPaint;
228 grPaint.setXPFactory(GrPorterDuffXPFactory::Make(SkXfermode::kSrc_Mode));
jbaumanb445a572016-06-09 13:24:48 -0700229 sk_sp<GrFragmentProcessor> fp(
230 GrYUVEffect::MakeYUVToRGB(texture[0], texture[1], texture[2], sizes,
231 static_cast<SkYUVColorSpace>(space), true));
232 if (fp) {
233 SkMatrix viewMatrix;
234 viewMatrix.setTranslate(x, y);
robertphillips28a838e2016-06-23 14:07:00 -0700235 grPaint.addColorFragmentProcessor(fp);
jbaumanb445a572016-06-09 13:24:48 -0700236 SkAutoTUnref<GrDrawBatch> batch(GrRectBatchFactory::CreateNonAAFill(
237 GrColor_WHITE, viewMatrix, renderRect, nullptr, nullptr));
robertphillips28a838e2016-06-23 14:07:00 -0700238 drawContext->drawContextPriv().testingOnly_drawBatch(grPaint, batch);
jbaumanb445a572016-06-09 13:24:48 -0700239 }
240 }
241 }
242
243private:
244 SkBitmap fBmp[2];
245
246 typedef GM INHERITED;
247};
248
249DEF_GM(return new YUVNV12toRGBEffect;)
sugoi24dcac22014-07-07 15:09:48 -0700250}
251
252#endif