blob: c89c08de6e3d11cb20a9660f92f4f6a66b254383 [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
reed80c772b2015-07-30 18:58:23 -070016SkImage_Gpu::SkImage_Gpu(int w, int h, uint32_t uniqueID, SkAlphaType at, GrTexture* tex,
reed8b26b992015-05-07 15:36:17 -070017 int sampleCountForNewSurfaces, SkSurface::Budgeted budgeted)
reed80c772b2015-07-30 18:58:23 -070018 : INHERITED(w, h, uniqueID, NULL)
reed8b26b992015-05-07 15:36:17 -070019 , 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 {
bsalomon74f681d2015-06-23 14:38:48 -070064 return GrPixelConfigIsOpaque(fTexture->config()) || fAlphaType == kOpaque_SkAlphaType;
reed8b26b992015-05-07 15:36:17 -070065}
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,
reedde499882015-06-18 13:41:40 -0700118 SkAlphaType at, GrWrapOwnership ownership,
119 SkImage::TextureReleaseProc releaseProc,
120 SkImage::ReleaseContext releaseCtx) {
reed8b26b992015-05-07 15:36:17 -0700121 if (desc.fWidth <= 0 || desc.fHeight <= 0) {
122 return NULL;
123 }
bsalomon6dc6f5f2015-06-18 09:12:16 -0700124 SkAutoTUnref<GrTexture> tex(ctx->textureProvider()->wrapBackendTexture(desc, ownership));
reed8b26b992015-05-07 15:36:17 -0700125 if (!tex) {
126 return NULL;
127 }
reedde499882015-06-18 13:41:40 -0700128 if (releaseProc) {
129 tex->setRelease(releaseProc, releaseCtx);
130 }
131
reed8b26b992015-05-07 15:36:17 -0700132 const SkSurface::Budgeted budgeted = SkSurface::kNo_Budgeted;
reed80c772b2015-07-30 18:58:23 -0700133 return SkNEW_ARGS(SkImage_Gpu,
134 (desc.fWidth, desc.fHeight, kNeedNewImageUniqueID, at, tex, 0, budgeted));
bsalomon6dc6f5f2015-06-18 09:12:16 -0700135
136}
137
reedde499882015-06-18 13:41:40 -0700138SkImage* SkImage::NewFromTexture(GrContext* ctx, const GrBackendTextureDesc& desc, SkAlphaType at,
139 TextureReleaseProc releaseP, ReleaseContext releaseC) {
140 return new_wrapped_texture_common(ctx, desc, at, kBorrow_GrWrapOwnership, releaseP, releaseC);
bsalomon6dc6f5f2015-06-18 09:12:16 -0700141}
142
143SkImage* SkImage::NewFromAdoptedTexture(GrContext* ctx, const GrBackendTextureDesc& desc,
144 SkAlphaType at) {
reedde499882015-06-18 13:41:40 -0700145 return new_wrapped_texture_common(ctx, desc, at, kAdopt_GrWrapOwnership, NULL, NULL);
reed8b26b992015-05-07 15:36:17 -0700146}
147
reed56179002015-07-07 06:11:19 -0700148SkImage* SkImage::NewFromTextureCopy(GrContext* ctx, const GrBackendTextureDesc& desc,
reed8b26b992015-05-07 15:36:17 -0700149 SkAlphaType at) {
reed56179002015-07-07 06:11:19 -0700150 if (desc.fWidth <= 0 || desc.fHeight <= 0) {
reed8b26b992015-05-07 15:36:17 -0700151 return NULL;
152 }
reed56179002015-07-07 06:11:19 -0700153
bsalomon6dc6f5f2015-06-18 09:12:16 -0700154 SkAutoTUnref<GrTexture> src(ctx->textureProvider()->wrapBackendTexture(
reed56179002015-07-07 06:11:19 -0700155 desc, kBorrow_GrWrapOwnership));
reed8b26b992015-05-07 15:36:17 -0700156 if (!src) {
157 return NULL;
158 }
159
reed56179002015-07-07 06:11:19 -0700160 const bool isBudgeted = true;
161 SkAutoTUnref<GrTexture> dst(GrDeepCopyTexture(src, isBudgeted));
reed8b26b992015-05-07 15:36:17 -0700162 if (!dst) {
163 return NULL;
164 }
165
reed56179002015-07-07 06:11:19 -0700166 const SkSurface::Budgeted budgeted = SkSurface::kYes_Budgeted;
reed8b26b992015-05-07 15:36:17 -0700167 const int sampleCount = 0; // todo: make this an explicit parameter to newSurface()?
reed80c772b2015-07-30 18:58:23 -0700168 return SkNEW_ARGS(SkImage_Gpu, (desc.fWidth, desc.fHeight, kNeedNewImageUniqueID,
169 at, dst, sampleCount, budgeted));
bsalomoneaaaf0b2015-01-23 08:08:04 -0800170}
bsalomon993a4212015-05-29 11:37:25 -0700171
172SkImage* SkImage::NewFromYUVTexturesCopy(GrContext* ctx , SkYUVColorSpace colorSpace,
173 const GrBackendObject yuvTextureHandles[3],
174 const SkISize yuvSizes[3],
175 GrSurfaceOrigin origin) {
176 const SkSurface::Budgeted budgeted = SkSurface::kYes_Budgeted;
177
178 if (yuvSizes[0].fWidth <= 0 || yuvSizes[0].fHeight <= 0 ||
179 yuvSizes[1].fWidth <= 0 || yuvSizes[1].fHeight <= 0 ||
180 yuvSizes[2].fWidth <= 0 || yuvSizes[2].fHeight <= 0) {
181 return NULL;
182 }
183 static const GrPixelConfig kConfig = kAlpha_8_GrPixelConfig;
184 GrBackendTextureDesc yDesc;
185 yDesc.fConfig = kConfig;
186 yDesc.fOrigin = origin;
187 yDesc.fSampleCnt = 0;
188 yDesc.fTextureHandle = yuvTextureHandles[0];
189 yDesc.fWidth = yuvSizes[0].fWidth;
190 yDesc.fHeight = yuvSizes[0].fHeight;
191
192 GrBackendTextureDesc uDesc;
193 uDesc.fConfig = kConfig;
194 uDesc.fOrigin = origin;
195 uDesc.fSampleCnt = 0;
196 uDesc.fTextureHandle = yuvTextureHandles[1];
197 uDesc.fWidth = yuvSizes[1].fWidth;
198 uDesc.fHeight = yuvSizes[1].fHeight;
199
200 GrBackendTextureDesc vDesc;
201 vDesc.fConfig = kConfig;
202 vDesc.fOrigin = origin;
203 vDesc.fSampleCnt = 0;
204 vDesc.fTextureHandle = yuvTextureHandles[2];
205 vDesc.fWidth = yuvSizes[2].fWidth;
206 vDesc.fHeight = yuvSizes[2].fHeight;
207
bsalomon6dc6f5f2015-06-18 09:12:16 -0700208 SkAutoTUnref<GrTexture> yTex(ctx->textureProvider()->wrapBackendTexture(
209 yDesc, kBorrow_GrWrapOwnership));
210 SkAutoTUnref<GrTexture> uTex(ctx->textureProvider()->wrapBackendTexture(
211 uDesc, kBorrow_GrWrapOwnership));
212 SkAutoTUnref<GrTexture> vTex(ctx->textureProvider()->wrapBackendTexture(
213 vDesc, kBorrow_GrWrapOwnership));
bsalomon993a4212015-05-29 11:37:25 -0700214 if (!yTex || !uTex || !vTex) {
215 return NULL;
216 }
217
218 GrSurfaceDesc dstDesc;
219 // Needs to be a render target in order to draw to it for the yuv->rgb conversion.
220 dstDesc.fFlags = kRenderTarget_GrSurfaceFlag;
221 dstDesc.fOrigin = origin;
222 dstDesc.fWidth = yuvSizes[0].fWidth;
223 dstDesc.fHeight = yuvSizes[0].fHeight;
224 dstDesc.fConfig = kRGBA_8888_GrPixelConfig;
225 dstDesc.fSampleCnt = 0;
226
bsalomoneae62002015-07-31 13:59:30 -0700227 SkAutoTUnref<GrTexture> dst(ctx->textureProvider()->createTexture(dstDesc, true));
bsalomon993a4212015-05-29 11:37:25 -0700228 if (!dst) {
229 return NULL;
230 }
231
232 GrPaint paint;
233 paint.setPorterDuffXPFactory(SkXfermode::kSrc_Mode);
joshualitt2cdec312015-07-09 07:31:31 -0700234 paint.addColorProcessor(GrYUVtoRGBEffect::Create(paint.getProcessorDataManager(), yTex, uTex,
235 vTex, yuvSizes, colorSpace))->unref();
bsalomon993a4212015-05-29 11:37:25 -0700236
237 const SkRect rect = SkRect::MakeWH(SkIntToScalar(dstDesc.fWidth),
238 SkIntToScalar(dstDesc.fHeight));
robertphillips2334fb62015-06-17 05:43:33 -0700239 GrDrawContext* drawContext = ctx->drawContext();
240 drawContext->drawRect(dst->asRenderTarget(), GrClip::WideOpen(), paint, SkMatrix::I(), rect);
bsalomon993a4212015-05-29 11:37:25 -0700241 ctx->flushSurfaceWrites(dst);
reed80c772b2015-07-30 18:58:23 -0700242 return SkNEW_ARGS(SkImage_Gpu, (dstDesc.fWidth, dstDesc.fHeight, kNeedNewImageUniqueID,
243 kOpaque_SkAlphaType, dst, 0, budgeted));
bsalomon993a4212015-05-29 11:37:25 -0700244}
reed56179002015-07-07 06:11:19 -0700245
246///////////////////////////////////////////////////////////////////////////////////////////////////
247
248GrTexture* GrDeepCopyTexture(GrTexture* src, bool budgeted) {
249 GrContext* ctx = src->getContext();
250
251 GrSurfaceDesc desc = src->desc();
reed56179002015-07-07 06:11:19 -0700252 GrTexture* dst = ctx->textureProvider()->createTexture(desc, budgeted, NULL, 0);
253 if (!dst) {
254 return NULL;
255 }
256
257 const SkIRect srcR = SkIRect::MakeWH(desc.fWidth, desc.fHeight);
258 const SkIPoint dstP = SkIPoint::Make(0, 0);
259 ctx->copySurface(dst, src, srcR, dstP, GrContext::kFlushWrites_PixelOp);
260 return dst;
261}
262