blob: 281f762dff37421c07a9cdfcf2b9a2f635807eea [file] [log] [blame]
reed@google.com5d4ba882012-07-31 15:45:27 +00001/*
2 * Copyright 2012 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
bsalomoneaaaf0b2015-01-23 08:08:04 -08008#include "SkImage_Gpu.h"
robertphillips@google.com97b6b072012-10-31 14:48:39 +00009#include "GrContext.h"
bsalomon993a4212015-05-29 11:37:25 -070010#include "GrDrawContext.h"
11#include "effects/GrYUVtoRGBEffect.h"
12#include "SkCanvas.h"
reed8b26b992015-05-07 15:36:17 -070013#include "SkGpuDevice.h"
reed@google.com5d4ba882012-07-31 15:45:27 +000014
bsalomon993a4212015-05-29 11:37:25 -070015
reed8b26b992015-05-07 15:36:17 -070016SkImage_Gpu::SkImage_Gpu(int w, int h, SkAlphaType at, GrTexture* tex,
17 int sampleCountForNewSurfaces, SkSurface::Budgeted budgeted)
18 : INHERITED(w, h, NULL)
19 , fTexture(SkRef(tex))
reed3f10b9d2014-11-21 10:27:53 -080020 , fSampleCountForNewSurfaces(sampleCountForNewSurfaces)
reed8b26b992015-05-07 15:36:17 -070021 , fAlphaType(at)
bsalomoneaaaf0b2015-01-23 08:08:04 -080022 , fBudgeted(budgeted)
reed8b26b992015-05-07 15:36:17 -070023 {}
piotaixrcef04f82014-07-14 07:48:04 -070024
reed4af267b2014-11-21 08:46:37 -080025SkSurface* SkImage_Gpu::onNewSurface(const SkImageInfo& info, const SkSurfaceProps& props) const {
reed8b26b992015-05-07 15:36:17 -070026 GrTexture* tex = this->getTexture();
27 SkASSERT(tex);
28 GrContext* ctx = tex->getContext();
29 if (!ctx) {
30 // the texture may have been abandoned, so we have to check
robertphillips@google.com97b6b072012-10-31 14:48:39 +000031 return NULL;
32 }
reed8b26b992015-05-07 15:36:17 -070033 // TODO: Change signature of onNewSurface to take a budgeted param.
34 const SkSurface::Budgeted budgeted = SkSurface::kNo_Budgeted;
35 return SkSurface::NewRenderTarget(ctx, budgeted, info, fSampleCountForNewSurfaces, &props);
robertphillips@google.com97b6b072012-10-31 14:48:39 +000036}
reed4af267b2014-11-21 08:46:37 -080037
bsalomoneaaaf0b2015-01-23 08:08:04 -080038extern void SkTextureImageApplyBudgetedDecision(SkImage* image) {
bsalomon55812362015-06-10 08:49:28 -070039 if (as_IB(image)->getTexture()) {
reed8b26b992015-05-07 15:36:17 -070040 ((SkImage_Gpu*)image)->applyBudgetDecision();
41 }
42}
43
44SkShader* SkImage_Gpu::onNewShader(SkShader::TileMode tileX, SkShader::TileMode tileY,
45 const SkMatrix* localMatrix) const {
46 SkBitmap bm;
47 GrWrapTextureInBitmap(fTexture, this->width(), this->height(), this->isOpaque(), &bm);
48 return SkShader::CreateBitmapShader(bm, tileX, tileY, localMatrix);
49}
50
51bool SkImage_Gpu::getROPixels(SkBitmap* dst) const {
52 SkAlphaType at = this->isOpaque() ? kOpaque_SkAlphaType : kPremul_SkAlphaType;
53 if (!dst->tryAllocPixels(SkImageInfo::MakeN32(this->width(), this->height(), at))) {
54 return false;
55 }
56 if (!fTexture->readPixels(0, 0, dst->width(), dst->height(), kSkia8888_GrPixelConfig,
57 dst->getPixels(), dst->rowBytes())) {
58 return false;
59 }
60 return true;
61}
62
63bool SkImage_Gpu::isOpaque() const {
64 return GrPixelConfigIsOpaque(fTexture->config());
65}
66
67static void apply_premul(const SkImageInfo& info, void* pixels, size_t rowBytes) {
68 switch (info.colorType()) {
69 case kRGBA_8888_SkColorType:
70 case kBGRA_8888_SkColorType:
71 break;
72 default:
73 return; // nothing to do
74 }
75
76 // SkColor is not necesarily RGBA or BGRA, but it is one of them on little-endian,
77 // and in either case, the alpha-byte is always in the same place, so we can safely call
78 // SkPreMultiplyColor()
79 //
80 SkColor* row = (SkColor*)pixels;
81 for (int y = 0; y < info.height(); ++y) {
82 for (int x = 0; x < info.width(); ++x) {
83 row[x] = SkPreMultiplyColor(row[x]);
84 }
85 }
86}
87
88bool SkImage_Gpu::onReadPixels(const SkImageInfo& info, void* pixels, size_t rowBytes,
89 int srcX, int srcY) const {
90 GrPixelConfig config = SkImageInfo2GrPixelConfig(info.colorType(), info.alphaType(),
91 info.profileType());
92 uint32_t flags = 0;
93 if (kUnpremul_SkAlphaType == info.alphaType() && kPremul_SkAlphaType == fAlphaType) {
94 // let the GPU perform this transformation for us
95 flags = GrContext::kUnpremul_PixelOpsFlag;
96 }
97 if (!fTexture->readPixels(srcX, srcY, info.width(), info.height(), config,
98 pixels, rowBytes, flags)) {
99 return false;
100 }
101 // do we have to manually fix-up the alpha channel?
102 // src dst
103 // unpremul premul fix manually
104 // premul unpremul done by kUnpremul_PixelOpsFlag
105 // all other combos need to change.
106 //
107 // Should this be handled by Ganesh? todo:?
108 //
109 if (kPremul_SkAlphaType == info.alphaType() && kUnpremul_SkAlphaType == fAlphaType) {
110 apply_premul(info, pixels, rowBytes);
111 }
112 return true;
113}
114
115///////////////////////////////////////////////////////////////////////////////////////////////////
116
bsalomon6dc6f5f2015-06-18 09:12:16 -0700117static SkImage* new_wrapped_texture_common(GrContext* ctx, const GrBackendTextureDesc& desc,
118 SkAlphaType at, GrWrapOwnership ownership) {
reed8b26b992015-05-07 15:36:17 -0700119 if (desc.fWidth <= 0 || desc.fHeight <= 0) {
120 return NULL;
121 }
bsalomon6dc6f5f2015-06-18 09:12:16 -0700122 SkAutoTUnref<GrTexture> tex(ctx->textureProvider()->wrapBackendTexture(desc, ownership));
reed8b26b992015-05-07 15:36:17 -0700123 if (!tex) {
124 return NULL;
125 }
126 const SkSurface::Budgeted budgeted = SkSurface::kNo_Budgeted;
127 return SkNEW_ARGS(SkImage_Gpu, (desc.fWidth, desc.fHeight, at, tex, 0, budgeted));
bsalomon6dc6f5f2015-06-18 09:12:16 -0700128
129}
130
131SkImage* SkImage::NewFromTexture(GrContext* ctx, const GrBackendTextureDesc& desc, SkAlphaType at) {
132 return new_wrapped_texture_common(ctx, desc, at, kBorrow_GrWrapOwnership);
133}
134
135SkImage* SkImage::NewFromAdoptedTexture(GrContext* ctx, const GrBackendTextureDesc& desc,
136 SkAlphaType at) {
137 return new_wrapped_texture_common(ctx, desc, at, kAdopt_GrWrapOwnership);
reed8b26b992015-05-07 15:36:17 -0700138}
139
140SkImage* SkImage::NewFromTextureCopy(GrContext* ctx, const GrBackendTextureDesc& srcDesc,
141 SkAlphaType at) {
142 const bool isBudgeted = true;
143 const SkSurface::Budgeted budgeted = SkSurface::kYes_Budgeted;
144
145 if (srcDesc.fWidth <= 0 || srcDesc.fHeight <= 0) {
146 return NULL;
147 }
bsalomon6dc6f5f2015-06-18 09:12:16 -0700148 SkAutoTUnref<GrTexture> src(ctx->textureProvider()->wrapBackendTexture(
149 srcDesc, kBorrow_GrWrapOwnership));
reed8b26b992015-05-07 15:36:17 -0700150 if (!src) {
151 return NULL;
152 }
153
154 GrSurfaceDesc dstDesc;
155 // need to be a rendertarget for readpixels to work, instead of kNone_GrSurfaceFlags
156 dstDesc.fFlags = kRenderTarget_GrSurfaceFlag;
157 dstDesc.fOrigin = srcDesc.fOrigin;
158 dstDesc.fWidth = srcDesc.fWidth;
159 dstDesc.fHeight = srcDesc.fHeight;
160 dstDesc.fConfig = srcDesc.fConfig;
161 dstDesc.fSampleCnt = srcDesc.fSampleCnt;
162
163 SkAutoTUnref<GrTexture> dst(ctx->textureProvider()->createTexture(
164 dstDesc, isBudgeted, NULL, 0));
165 if (!dst) {
166 return NULL;
167 }
168
169 const SkIRect srcR = SkIRect::MakeWH(dstDesc.fWidth, dstDesc.fHeight);
170 const SkIPoint dstP = SkIPoint::Make(0, 0);
171 ctx->copySurface(dst, src, srcR, dstP, GrContext::kFlushWrites_PixelOp);
172
173 const int sampleCount = 0; // todo: make this an explicit parameter to newSurface()?
174 return SkNEW_ARGS(SkImage_Gpu, (dstDesc.fWidth, dstDesc.fHeight, at, dst, sampleCount,
175 budgeted));
bsalomoneaaaf0b2015-01-23 08:08:04 -0800176}
bsalomon993a4212015-05-29 11:37:25 -0700177
178SkImage* SkImage::NewFromYUVTexturesCopy(GrContext* ctx , SkYUVColorSpace colorSpace,
179 const GrBackendObject yuvTextureHandles[3],
180 const SkISize yuvSizes[3],
181 GrSurfaceOrigin origin) {
182 const SkSurface::Budgeted budgeted = SkSurface::kYes_Budgeted;
183
184 if (yuvSizes[0].fWidth <= 0 || yuvSizes[0].fHeight <= 0 ||
185 yuvSizes[1].fWidth <= 0 || yuvSizes[1].fHeight <= 0 ||
186 yuvSizes[2].fWidth <= 0 || yuvSizes[2].fHeight <= 0) {
187 return NULL;
188 }
189 static const GrPixelConfig kConfig = kAlpha_8_GrPixelConfig;
190 GrBackendTextureDesc yDesc;
191 yDesc.fConfig = kConfig;
192 yDesc.fOrigin = origin;
193 yDesc.fSampleCnt = 0;
194 yDesc.fTextureHandle = yuvTextureHandles[0];
195 yDesc.fWidth = yuvSizes[0].fWidth;
196 yDesc.fHeight = yuvSizes[0].fHeight;
197
198 GrBackendTextureDesc uDesc;
199 uDesc.fConfig = kConfig;
200 uDesc.fOrigin = origin;
201 uDesc.fSampleCnt = 0;
202 uDesc.fTextureHandle = yuvTextureHandles[1];
203 uDesc.fWidth = yuvSizes[1].fWidth;
204 uDesc.fHeight = yuvSizes[1].fHeight;
205
206 GrBackendTextureDesc vDesc;
207 vDesc.fConfig = kConfig;
208 vDesc.fOrigin = origin;
209 vDesc.fSampleCnt = 0;
210 vDesc.fTextureHandle = yuvTextureHandles[2];
211 vDesc.fWidth = yuvSizes[2].fWidth;
212 vDesc.fHeight = yuvSizes[2].fHeight;
213
bsalomon6dc6f5f2015-06-18 09:12:16 -0700214 SkAutoTUnref<GrTexture> yTex(ctx->textureProvider()->wrapBackendTexture(
215 yDesc, kBorrow_GrWrapOwnership));
216 SkAutoTUnref<GrTexture> uTex(ctx->textureProvider()->wrapBackendTexture(
217 uDesc, kBorrow_GrWrapOwnership));
218 SkAutoTUnref<GrTexture> vTex(ctx->textureProvider()->wrapBackendTexture(
219 vDesc, kBorrow_GrWrapOwnership));
bsalomon993a4212015-05-29 11:37:25 -0700220 if (!yTex || !uTex || !vTex) {
221 return NULL;
222 }
223
224 GrSurfaceDesc dstDesc;
225 // Needs to be a render target in order to draw to it for the yuv->rgb conversion.
226 dstDesc.fFlags = kRenderTarget_GrSurfaceFlag;
227 dstDesc.fOrigin = origin;
228 dstDesc.fWidth = yuvSizes[0].fWidth;
229 dstDesc.fHeight = yuvSizes[0].fHeight;
230 dstDesc.fConfig = kRGBA_8888_GrPixelConfig;
231 dstDesc.fSampleCnt = 0;
232
233 SkAutoTUnref<GrTexture> dst(ctx->textureProvider()->refScratchTexture(
234 dstDesc, GrTextureProvider::kExact_ScratchTexMatch));
235 if (!dst) {
236 return NULL;
237 }
238
239 GrPaint paint;
240 paint.setPorterDuffXPFactory(SkXfermode::kSrc_Mode);
241 paint.addColorProcessor(GrYUVtoRGBEffect::Create(yTex, uTex, vTex, yuvSizes,
242 colorSpace))->unref();
243
244 const SkRect rect = SkRect::MakeWH(SkIntToScalar(dstDesc.fWidth),
245 SkIntToScalar(dstDesc.fHeight));
robertphillips2334fb62015-06-17 05:43:33 -0700246 GrDrawContext* drawContext = ctx->drawContext();
247 drawContext->drawRect(dst->asRenderTarget(), GrClip::WideOpen(), paint, SkMatrix::I(), rect);
bsalomon993a4212015-05-29 11:37:25 -0700248 ctx->flushSurfaceWrites(dst);
249 return SkNEW_ARGS(SkImage_Gpu, (dstDesc.fWidth, dstDesc.fHeight, kOpaque_SkAlphaType, dst, 0,
250 budgeted));
251}