blob: 9d72cc05fc45f3186d00932ff3a17313a9530081 [file] [log] [blame]
bsalomon993a4212015-05-29 11:37:25 -07001/*
2 * Copyright 2015 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
bsalomon993a4212015-05-29 11:37:25 -070012#include "GrContext.h"
Robert Phillipsf35fd8d2018-01-22 10:48:15 -050013#include "GrContextPriv.h"
robertphillips87f15c82016-05-20 11:14:33 -070014#include "GrGpu.h"
bsalomon993a4212015-05-29 11:37:25 -070015#include "GrTest.h"
16#include "SkBitmap.h"
17#include "SkGradientShader.h"
18#include "SkImage.h"
Hal Canaryc640d0d2018-06-13 09:59:02 -040019#include "SkTo.h"
bsalomon993a4212015-05-29 11:37:25 -070020
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 {
egdaniel3602d4f2016-08-12 11:58:53 -070034 return SkISize::Make(50, 175);
bsalomon993a4212015-05-29 11:37:25 -070035 }
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;
mtkleindbfd7ab2016-09-01 11:24:54 -070041 constexpr SkColor kColors[] =
bsalomon993a4212015-05-29 11:37:25 -070042 { SK_ColorBLUE, SK_ColorYELLOW, SK_ColorGREEN, SK_ColorWHITE };
reed1a9b9642016-03-13 14:13:58 -070043 paint.setShader(SkGradientShader::MakeRadial(SkPoint::Make(0,0), kBmpSize / 2.f, kColors,
44 nullptr, SK_ARRAY_COUNT(kColors),
45 SkShader::kMirror_TileMode));
bsalomon993a4212015-05-29 11:37:25 -070046 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());
jvanverth3e5f5552015-07-16 07:46:07 -070062 uvPixels[1] = static_cast<signed char*>(fYUVBmps[2].getPixels());
bsalomon993a4212015-05-29 11:37:25 -070063
64 // Here we encode using the NTC encoding (even though we will draw it with all the supported
65 // yuv color spaces when converted back to RGB)
66 for (int i = 0; i < kBmpSize * kBmpSize; ++i) {
67 yPixels[i] = static_cast<unsigned char>(0.299f * SkGetPackedR32(rgbColors[i]) +
68 0.587f * SkGetPackedG32(rgbColors[i]) +
69 0.114f * SkGetPackedB32(rgbColors[i]));
70 }
71 for (int j = 0; j < kBmpSize / 2; ++j) {
72 for (int i = 0; i < kBmpSize / 2; ++i) {
73 // Average together 4 pixels of RGB.
74 int rgb[] = { 0, 0, 0 };
75 for (int y = 0; y < 2; ++y) {
76 for (int x = 0; x < 2; ++x) {
77 int rgbIndex = (2 * j + y) * kBmpSize + 2 * i + x;
78 rgb[0] += SkGetPackedR32(rgbColors[rgbIndex]);
79 rgb[1] += SkGetPackedG32(rgbColors[rgbIndex]);
80 rgb[2] += SkGetPackedB32(rgbColors[rgbIndex]);
81 }
82 }
83 for (int c = 0; c < 3; ++c) {
84 rgb[c] /= 4;
85 }
86 int uvIndex = j * kBmpSize / 2 + i;
87 uvPixels[0][uvIndex] = static_cast<signed char>(
88 ((-38 * rgb[0] - 74 * rgb[1] + 112 * rgb[2] + 128) >> 8) + 128);
89 uvPixels[1][uvIndex] = static_cast<signed char>(
90 ((112 * rgb[0] - 94 * rgb[1] - 18 * rgb[2] + 128) >> 8) + 128);
91 }
92 }
reed9ce9d672016-03-17 10:51:11 -070093 fRGBImage = SkImage::MakeRasterCopy(SkPixmap(rgbBmp.info(), rgbColors, rgbBmp.rowBytes()));
bsalomon993a4212015-05-29 11:37:25 -070094 }
95
Robert Phillipsc25db632017-12-13 09:22:45 -050096 void createYUVTextures(GrContext* context, GrBackendTexture yuvTextures[3]) {
Khushalc421ca12018-06-26 14:38:34 -070097 if (context->abandoned()) {
Robert Phillips6d363702018-06-25 08:53:09 -040098 return;
99 }
100
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500101 GrGpu* gpu = context->contextPriv().getGpu();
jvanverth672bb7f2015-07-13 07:19:57 -0700102 if (!gpu) {
bsalomon993a4212015-05-29 11:37:25 -0700103 return;
104 }
105
bsalomon993a4212015-05-29 11:37:25 -0700106 for (int i = 0; i < 3; ++i) {
bsalomon993a4212015-05-29 11:37:25 -0700107 SkASSERT(fYUVBmps[i].width() == SkToInt(fYUVBmps[i].rowBytes()));
Robert Phillipsc25db632017-12-13 09:22:45 -0500108 yuvTextures[i] = gpu->createTestingOnlyBackendTexture(fYUVBmps[i].getPixels(),
109 fYUVBmps[i].width(),
110 fYUVBmps[i].height(),
111 kAlpha_8_GrPixelConfig,
112 false, GrMipMapped::kNo);
bsalomon993a4212015-05-29 11:37:25 -0700113 }
114 context->resetContext();
115 }
116
Robert Phillipsc25db632017-12-13 09:22:45 -0500117 void deleteYUVTextures(GrContext* context, GrBackendTexture yuvTextures[3]) {
Khushalc421ca12018-06-26 14:38:34 -0700118 if (context->abandoned()) {
Robert Phillips6d363702018-06-25 08:53:09 -0400119 return;
120 }
jvanverth672bb7f2015-07-13 07:19:57 -0700121
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500122 GrGpu* gpu = context->contextPriv().getGpu();
jvanverth672bb7f2015-07-13 07:19:57 -0700123 if (!gpu) {
bsalomon993a4212015-05-29 11:37:25 -0700124 return;
125 }
126
Greg Daniel42314012018-04-23 10:57:37 -0400127 context->flush();
128 gpu->testingOnly_flushGpuAndSync();
jvanverth672bb7f2015-07-13 07:19:57 -0700129 for (int i = 0; i < 3; ++i) {
Robert Phillips579f0942018-01-08 14:53:35 -0500130 if (yuvTextures[i].isValid()) {
Brian Salomon26102cb2018-03-09 09:33:19 -0500131 gpu->deleteTestingOnlyBackendTexture(yuvTextures[i]);
Robert Phillips579f0942018-01-08 14:53:35 -0500132 }
bsalomon993a4212015-05-29 11:37:25 -0700133 }
jvanverth672bb7f2015-07-13 07:19:57 -0700134
bsalomon993a4212015-05-29 11:37:25 -0700135 context->resetContext();
136 }
137
138 void onDraw(SkCanvas* canvas) override {
robertphillips175dd9b2016-04-28 14:32:04 -0700139 GrContext* context = canvas->getGrContext();
140 if (!context) {
halcanary2a243382015-09-09 08:16:41 -0700141 skiagm::GM::DrawGpuOnlyMessage(canvas);
bsalomon993a4212015-05-29 11:37:25 -0700142 return;
143 }
144
bsalomon993a4212015-05-29 11:37:25 -0700145
mtkleindbfd7ab2016-09-01 11:24:54 -0700146 constexpr SkScalar kPad = 10.f;
bsalomon993a4212015-05-29 11:37:25 -0700147
reed9ce9d672016-03-17 10:51:11 -0700148 SkTArray<sk_sp<SkImage>> images;
149 images.push_back(fRGBImage);
bsalomon993a4212015-05-29 11:37:25 -0700150 for (int space = kJPEG_SkYUVColorSpace; space <= kLastEnum_SkYUVColorSpace; ++space) {
Robert Phillipsc25db632017-12-13 09:22:45 -0500151 GrBackendTexture yuvTextures[3];
152 this->createYUVTextures(context, yuvTextures);
reed9ce9d672016-03-17 10:51:11 -0700153 images.push_back(SkImage::MakeFromYUVTexturesCopy(context,
154 static_cast<SkYUVColorSpace>(space),
Brian Salomon6a426c12018-03-15 12:16:02 -0400155 yuvTextures,
reed9ce9d672016-03-17 10:51:11 -0700156 kTopLeft_GrSurfaceOrigin));
Robert Phillipsc25db632017-12-13 09:22:45 -0500157 this->deleteYUVTextures(context, yuvTextures);
bsalomon993a4212015-05-29 11:37:25 -0700158 }
bsalomon993a4212015-05-29 11:37:25 -0700159 for (int i = 0; i < images.count(); ++ i) {
160 SkScalar y = (i + 1) * kPad + i * fYUVBmps[0].height();
161 SkScalar x = kPad;
162
reed9ce9d672016-03-17 10:51:11 -0700163 canvas->drawImage(images[i].get(), x, y);
bsalomon993a4212015-05-29 11:37:25 -0700164 }
165 }
166
167private:
reed9ce9d672016-03-17 10:51:11 -0700168 sk_sp<SkImage> fRGBImage;
169 SkBitmap fYUVBmps[3];
bsalomon993a4212015-05-29 11:37:25 -0700170
mtkleindbfd7ab2016-09-01 11:24:54 -0700171 static constexpr int kBmpSize = 32;
bsalomon993a4212015-05-29 11:37:25 -0700172
173 typedef GM INHERITED;
174};
175
halcanary385fe4d2015-08-26 13:07:48 -0700176DEF_GM(return new ImageFromYUVTextures;)
bsalomon993a4212015-05-29 11:37:25 -0700177}