blob: dbed06fa21d80eee906a105fc57e5951a973caff [file] [log] [blame]
bsalomon993a4212015-05-29 11:37:25 -07001
2/*
3 * Copyright 2015 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8
9// This test only works with the GPU backend.
10
11#include "gm.h"
12
13#if SK_SUPPORT_GPU
14
15#include "GrContext.h"
bsalomon993a4212015-05-29 11:37:25 -070016#include "GrTest.h"
17#include "SkBitmap.h"
18#include "SkGradientShader.h"
19#include "SkImage.h"
20
21namespace skiagm {
22class ImageFromYUVTextures : public GM {
23public:
24 ImageFromYUVTextures() {
25 this->setBGColor(0xFFFFFFFF);
26 }
27
28protected:
29 SkString onShortName() override {
30 return SkString("image_from_yuv_textures");
31 }
32
33 SkISize onISize() override {
34 return SkISize::Make(50, 135);
35 }
36
37 void onOnceBeforeDraw() override {
38 // We create an RGB bitmap and then extract YUV bmps where the U and V bitmaps are
39 // subsampled by 2 in both dimensions.
40 SkPaint paint;
41 static const SkColor kColors[] =
42 { SK_ColorBLUE, SK_ColorYELLOW, SK_ColorGREEN, SK_ColorWHITE };
43 paint.setShader(SkGradientShader::CreateRadial(SkPoint::Make(0,0), kBmpSize / 2.f, kColors,
44 NULL, SK_ARRAY_COUNT(kColors),
45 SkShader::kMirror_TileMode))->unref();
46 SkBitmap rgbBmp;
47 rgbBmp.allocN32Pixels(kBmpSize, kBmpSize, true);
48 SkCanvas canvas(rgbBmp);
49 canvas.drawPaint(paint);
50 SkPMColor* rgbColors = static_cast<SkPMColor*>(rgbBmp.getPixels());
51
52 SkImageInfo yinfo = SkImageInfo::MakeA8(kBmpSize, kBmpSize);
53 fYUVBmps[0].allocPixels(yinfo);
54 SkImageInfo uinfo = SkImageInfo::MakeA8(kBmpSize / 2, kBmpSize / 2);
55 fYUVBmps[1].allocPixels(uinfo);
56 SkImageInfo vinfo = SkImageInfo::MakeA8(kBmpSize / 2, kBmpSize / 2);
57 fYUVBmps[2].allocPixels(vinfo);
58 unsigned char* yPixels;
59 signed char* uvPixels[2];
60 yPixels = static_cast<unsigned char*>(fYUVBmps[0].getPixels());
61 uvPixels[0] = static_cast<signed char*>(fYUVBmps[1].getPixels());
62 uvPixels[1] = static_cast<signed char*>(fYUVBmps[2
63 ].getPixels());
64
65 // Here we encode using the NTC encoding (even though we will draw it with all the supported
66 // yuv color spaces when converted back to RGB)
67 for (int i = 0; i < kBmpSize * kBmpSize; ++i) {
68 yPixels[i] = static_cast<unsigned char>(0.299f * SkGetPackedR32(rgbColors[i]) +
69 0.587f * SkGetPackedG32(rgbColors[i]) +
70 0.114f * SkGetPackedB32(rgbColors[i]));
71 }
72 for (int j = 0; j < kBmpSize / 2; ++j) {
73 for (int i = 0; i < kBmpSize / 2; ++i) {
74 // Average together 4 pixels of RGB.
75 int rgb[] = { 0, 0, 0 };
76 for (int y = 0; y < 2; ++y) {
77 for (int x = 0; x < 2; ++x) {
78 int rgbIndex = (2 * j + y) * kBmpSize + 2 * i + x;
79 rgb[0] += SkGetPackedR32(rgbColors[rgbIndex]);
80 rgb[1] += SkGetPackedG32(rgbColors[rgbIndex]);
81 rgb[2] += SkGetPackedB32(rgbColors[rgbIndex]);
82 }
83 }
84 for (int c = 0; c < 3; ++c) {
85 rgb[c] /= 4;
86 }
87 int uvIndex = j * kBmpSize / 2 + i;
88 uvPixels[0][uvIndex] = static_cast<signed char>(
89 ((-38 * rgb[0] - 74 * rgb[1] + 112 * rgb[2] + 128) >> 8) + 128);
90 uvPixels[1][uvIndex] = static_cast<signed char>(
91 ((112 * rgb[0] - 94 * rgb[1] - 18 * rgb[2] + 128) >> 8) + 128);
92 }
93 }
94 fRGBImage.reset(SkImage::NewRasterCopy(rgbBmp.info(), rgbColors, rgbBmp.rowBytes()));
95 }
96
jvanverth672bb7f2015-07-13 07:19:57 -070097 void createYUVTextures(GrContext* context, GrBackendObject yuvIDs[3]) {
98 const GrGpu* gpu = context->getGpu();
99 if (!gpu) {
bsalomon993a4212015-05-29 11:37:25 -0700100 return;
101 }
102
bsalomon993a4212015-05-29 11:37:25 -0700103 for (int i = 0; i < 3; ++i) {
bsalomon993a4212015-05-29 11:37:25 -0700104 SkASSERT(fYUVBmps[i].width() == SkToInt(fYUVBmps[i].rowBytes()));
jvanverth672bb7f2015-07-13 07:19:57 -0700105 yuvIDs[i] = gpu->createBackendTexture(fYUVBmps[i].getPixels(),
106 fYUVBmps[i].width(), fYUVBmps[i].height(),
107 kAlpha_8_GrPixelConfig);
bsalomon993a4212015-05-29 11:37:25 -0700108 }
109 context->resetContext();
110 }
111
jvanverth672bb7f2015-07-13 07:19:57 -0700112 void deleteYUVTextures(GrContext* context, const GrBackendObject yuvIDs[3]) {
113
114 const GrGpu* gpu = context->getGpu();
115 if (!gpu) {
bsalomon993a4212015-05-29 11:37:25 -0700116 return;
117 }
118
jvanverth672bb7f2015-07-13 07:19:57 -0700119 for (int i = 0; i < 3; ++i) {
120 gpu->deleteBackendTexture(yuvIDs[i]);
bsalomon993a4212015-05-29 11:37:25 -0700121 }
jvanverth672bb7f2015-07-13 07:19:57 -0700122
bsalomon993a4212015-05-29 11:37:25 -0700123 context->resetContext();
124 }
125
126 void onDraw(SkCanvas* canvas) override {
127 GrRenderTarget* rt = canvas->internal_private_accessTopLayerRenderTarget();
128 GrContext* context;
129 if (!rt || !(context = rt->getContext())) {
130 this->drawGpuOnlyMessage(canvas);
131 return;
132 }
133
jvanverth672bb7f2015-07-13 07:19:57 -0700134 GrBackendObject yuvIDs[3];
bsalomon993a4212015-05-29 11:37:25 -0700135 this->createYUVTextures(context, yuvIDs);
136
137 static const SkScalar kPad = 10.f;
138
bsalomon993a4212015-05-29 11:37:25 -0700139 SkISize sizes[] = {
140 { fYUVBmps[0].width(), fYUVBmps[0].height()},
141 { fYUVBmps[1].width(), fYUVBmps[1].height()},
142 { fYUVBmps[2].width(), fYUVBmps[2].height()},
143 };
144 SkTArray<SkImage*> images;
145 images.push_back(SkRef(fRGBImage.get()));
146 for (int space = kJPEG_SkYUVColorSpace; space <= kLastEnum_SkYUVColorSpace; ++space) {
147 images.push_back(SkImage::NewFromYUVTexturesCopy(context,
148 static_cast<SkYUVColorSpace>(space),
jvanverth672bb7f2015-07-13 07:19:57 -0700149 yuvIDs, sizes,
bsalomon993a4212015-05-29 11:37:25 -0700150 kTopLeft_GrSurfaceOrigin));
151 }
152 this->deleteYUVTextures(context, yuvIDs);
153 for (int i = 0; i < images.count(); ++ i) {
154 SkScalar y = (i + 1) * kPad + i * fYUVBmps[0].height();
155 SkScalar x = kPad;
156
157 canvas->drawImage(images[i], x, y);
158 images[i]->unref();
159 images[i] = NULL;
160 }
161 }
162
163private:
164 SkAutoTUnref<SkImage> fRGBImage;
165 SkBitmap fYUVBmps[3];
166
167 static const int kBmpSize = 32;
168
169 typedef GM INHERITED;
170};
171
172DEF_GM( return SkNEW(ImageFromYUVTextures); )
173}
174
175#endif