blob: d094bdf4d12bca3c58e5e1d83e19492e0420e466 [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"
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 {
Brian Osman11052242016-10-27 14:47:55 -040071 GrRenderTargetContext* renderTargetContext =
72 canvas->internal_private_accessTopLayerRenderTargetContext();
73 if (!renderTargetContext) {
halcanary2a243382015-09-09 08:16:41 -070074 skiagm::GM::DrawGpuOnlyMessage(canvas);
robertphillips175dd9b2016-04-28 14:32:04 -070075 return;
sugoi24dcac22014-07-07 15:09:48 -070076 }
77
robertphillips175dd9b2016-04-28 14:32:04 -070078 GrContext* context = canvas->getGrContext();
79 if (!context) {
sugoi24dcac22014-07-07 15:09:48 -070080 return;
81 }
82
bsalomonbcf0a522014-10-08 08:40:09 -070083 SkAutoTUnref<GrTexture> texture[3];
bsalomonafa95e22015-10-12 10:39:46 -070084 texture[0].reset(GrRefCachedBitmapTexture(context, fBmp[0],
brianosman982eb7f2016-06-06 13:10:58 -070085 GrTextureParams::ClampBilerp(),
86 SkSourceGammaTreatment::kRespect));
bsalomonafa95e22015-10-12 10:39:46 -070087 texture[1].reset(GrRefCachedBitmapTexture(context, fBmp[1],
brianosman982eb7f2016-06-06 13:10:58 -070088 GrTextureParams::ClampBilerp(),
89 SkSourceGammaTreatment::kRespect));
bsalomonafa95e22015-10-12 10:39:46 -070090 texture[2].reset(GrRefCachedBitmapTexture(context, fBmp[2],
brianosman982eb7f2016-06-06 13:10:58 -070091 GrTextureParams::ClampBilerp(),
92 SkSourceGammaTreatment::kRespect));
bsalomonbcf0a522014-10-08 08:40:09 -070093
94 if (!texture[0] || !texture[1] || !texture[2]) {
sugoi24dcac22014-07-07 15:09:48 -070095 return;
96 }
97
mtkleindbfd7ab2016-09-01 11:24:54 -070098 constexpr SkScalar kDrawPad = 10.f;
99 constexpr SkScalar kTestPad = 10.f;
100 constexpr SkScalar kColorSpaceOffset = 36.f;
sugoi4ccce7e2015-02-13 13:57:09 -0800101 SkISize sizes[3] = {{YSIZE, YSIZE}, {USIZE, USIZE}, {VSIZE, VSIZE}};
sugoi24dcac22014-07-07 15:09:48 -0700102
rileyaabaef862014-09-12 17:45:58 -0700103 for (int space = kJPEG_SkYUVColorSpace; space <= kLastEnum_SkYUVColorSpace;
104 ++space) {
bsalomonbcf0a522014-10-08 08:40:09 -0700105 SkRect renderRect = SkRect::MakeWH(SkIntToScalar(fBmp[0].width()),
106 SkIntToScalar(fBmp[0].height()));
107 renderRect.outset(kDrawPad, kDrawPad);
sugoi24dcac22014-07-07 15:09:48 -0700108
bsalomonbcf0a522014-10-08 08:40:09 -0700109 SkScalar y = kDrawPad + kTestPad + space * kColorSpaceOffset;
110 SkScalar x = kDrawPad + kTestPad;
sugoi24dcac22014-07-07 15:09:48 -0700111
bsalomonbcf0a522014-10-08 08:40:09 -0700112 const int indices[6][3] = {{0, 1, 2}, {0, 2, 1}, {1, 0, 2},
113 {1, 2, 0}, {2, 0, 1}, {2, 1, 0}};
sugoi24dcac22014-07-07 15:09:48 -0700114
bsalomonbcf0a522014-10-08 08:40:09 -0700115 for (int i = 0; i < 6; ++i) {
robertphillips28a838e2016-06-23 14:07:00 -0700116 GrPaint grPaint;
117 grPaint.setXPFactory(GrPorterDuffXPFactory::Make(SkXfermode::kSrc_Mode));
jbaumanb445a572016-06-09 13:24:48 -0700118 sk_sp<GrFragmentProcessor> fp(GrYUVEffect::MakeYUVToRGB(
119 texture[indices[i][0]], texture[indices[i][1]], texture[indices[i][2]], sizes,
120 static_cast<SkYUVColorSpace>(space), false));
bsalomonbcf0a522014-10-08 08:40:09 -0700121 if (fp) {
122 SkMatrix viewMatrix;
123 viewMatrix.setTranslate(x, y);
robertphillips28a838e2016-06-23 14:07:00 -0700124 grPaint.addColorFragmentProcessor(std::move(fp));
joshualitt04194f32016-01-13 10:08:27 -0800125 SkAutoTUnref<GrDrawBatch> batch(
126 GrRectBatchFactory::CreateNonAAFill(GrColor_WHITE, viewMatrix,
127 renderRect, nullptr, nullptr));
Brian Osman693a5402016-10-27 15:13:22 -0400128 renderTargetContext->priv().testingOnly_drawBatch(grPaint, batch);
bsalomonbcf0a522014-10-08 08:40:09 -0700129 }
130 x += renderRect.width() + kTestPad;
131 }
sugoi24dcac22014-07-07 15:09:48 -0700132 }
bsalomonbcf0a522014-10-08 08:40:09 -0700133 }
sugoi24dcac22014-07-07 15:09:48 -0700134
135private:
136 SkBitmap fBmp[3];
137
138 typedef GM INHERITED;
139};
140
halcanary385fe4d2015-08-26 13:07:48 -0700141DEF_GM(return new YUVtoRGBEffect;)
jbaumanb445a572016-06-09 13:24:48 -0700142
143//////////////////////////////////////////////////////////////////////////////
144
145class YUVNV12toRGBEffect : public GM {
146public:
147 YUVNV12toRGBEffect() {
148 this->setBGColor(0xFFFFFFFF);
149 }
150
151protected:
152 SkString onShortName() override {
153 return SkString("yuv_nv12_to_rgb_effect");
154 }
155
156 SkISize onISize() override {
157 return SkISize::Make(48, 120);
158 }
159
160 void onOnceBeforeDraw() override {
161 SkImageInfo yinfo = SkImageInfo::MakeA8(YSIZE, YSIZE);
162 fBmp[0].allocPixels(yinfo);
163 SkImageInfo uvinfo = SkImageInfo::MakeN32Premul(USIZE, USIZE);
164 fBmp[1].allocPixels(uvinfo);
165 int color[] = {0, 85, 170};
166 const int limit[] = {255, 0, 255};
167 const int invl[] = {0, 255, 0};
168 const int inc[] = {1, -1, 1};
169
170 {
171 unsigned char* pixels = (unsigned char*)fBmp[0].getPixels();
172 const size_t nbBytes = fBmp[0].rowBytes() * fBmp[0].height();
173 for (size_t j = 0; j < nbBytes; ++j) {
174 pixels[j] = (unsigned char)color[0];
175 color[0] = (color[0] == limit[0]) ? invl[0] : color[0] + inc[0];
176 }
177 }
178
179 {
180 for (int y = 0; y < fBmp[1].height(); ++y) {
181 uint32_t* pixels = fBmp[1].getAddr32(0, y);
182 for (int j = 0; j < fBmp[1].width(); ++j) {
183 pixels[j] = SkColorSetARGB(0, color[1], color[2], 0);
184 color[1] = (color[1] == limit[1]) ? invl[1] : color[1] + inc[1];
185 color[2] = (color[2] == limit[2]) ? invl[2] : color[2] + inc[2];
186 }
187 }
188 }
189 }
190
191 void onDraw(SkCanvas* canvas) override {
Brian Osman11052242016-10-27 14:47:55 -0400192 GrRenderTargetContext* renderTargetContext =
193 canvas->internal_private_accessTopLayerRenderTargetContext();
194 if (!renderTargetContext) {
jbaumanb445a572016-06-09 13:24:48 -0700195 skiagm::GM::DrawGpuOnlyMessage(canvas);
196 return;
197 }
198
199 GrContext* context = canvas->getGrContext();
200 if (!context) {
201 return;
202 }
203
204 SkAutoTUnref<GrTexture> texture[3];
205 texture[0].reset(GrRefCachedBitmapTexture(context, fBmp[0], GrTextureParams::ClampBilerp(),
206 SkSourceGammaTreatment::kRespect));
207 texture[1].reset(GrRefCachedBitmapTexture(context, fBmp[1], GrTextureParams::ClampBilerp(),
208 SkSourceGammaTreatment::kRespect));
209 texture[2].reset(GrRefCachedBitmapTexture(context, fBmp[1], GrTextureParams::ClampBilerp(),
210 SkSourceGammaTreatment::kRespect));
211
212 if (!texture[0] || !texture[1] || !texture[2]) {
213 return;
214 }
215
mtkleindbfd7ab2016-09-01 11:24:54 -0700216 constexpr SkScalar kDrawPad = 10.f;
217 constexpr SkScalar kTestPad = 10.f;
218 constexpr SkScalar kColorSpaceOffset = 36.f;
jbaumanb445a572016-06-09 13:24:48 -0700219 SkISize sizes[3] = {{YSIZE, YSIZE}, {USIZE, USIZE}, {VSIZE, VSIZE}};
220
221 for (int space = kJPEG_SkYUVColorSpace; space <= kLastEnum_SkYUVColorSpace; ++space) {
222 SkRect renderRect =
223 SkRect::MakeWH(SkIntToScalar(fBmp[0].width()), SkIntToScalar(fBmp[0].height()));
224 renderRect.outset(kDrawPad, kDrawPad);
225
226 SkScalar y = kDrawPad + kTestPad + space * kColorSpaceOffset;
227 SkScalar x = kDrawPad + kTestPad;
228
robertphillips28a838e2016-06-23 14:07:00 -0700229 GrPaint grPaint;
230 grPaint.setXPFactory(GrPorterDuffXPFactory::Make(SkXfermode::kSrc_Mode));
jbaumanb445a572016-06-09 13:24:48 -0700231 sk_sp<GrFragmentProcessor> fp(
232 GrYUVEffect::MakeYUVToRGB(texture[0], texture[1], texture[2], sizes,
233 static_cast<SkYUVColorSpace>(space), true));
234 if (fp) {
235 SkMatrix viewMatrix;
236 viewMatrix.setTranslate(x, y);
robertphillips28a838e2016-06-23 14:07:00 -0700237 grPaint.addColorFragmentProcessor(fp);
jbaumanb445a572016-06-09 13:24:48 -0700238 SkAutoTUnref<GrDrawBatch> batch(GrRectBatchFactory::CreateNonAAFill(
239 GrColor_WHITE, viewMatrix, renderRect, nullptr, nullptr));
Brian Osman693a5402016-10-27 15:13:22 -0400240 renderTargetContext->priv().testingOnly_drawBatch(grPaint, batch);
jbaumanb445a572016-06-09 13:24:48 -0700241 }
242 }
243 }
244
245private:
246 SkBitmap fBmp[2];
247
248 typedef GM INHERITED;
249};
250
251DEF_GM(return new YUVNV12toRGBEffect;)
sugoi24dcac22014-07-07 15:09:48 -0700252}
253
254#endif