blob: 239d9a90da1c071f40e4cff37078406ef05913e9 [file] [log] [blame]
robertphillipsb6c65e92016-02-04 10:52:42 -08001/*
2 * Copyright 2016 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 */
reedad7604b2016-07-20 16:13:32 -07007
robertphillips83c17fa2016-03-18 08:14:27 -07008#include "SkSpecialImage.h"
reedad7604b2016-07-20 16:13:32 -07009#include "SkBitmap.h"
10#include "SkImage.h"
robertphillips64612512016-04-08 12:10:42 -070011#include "SkBitmapCache.h"
robertphillipsb6c65e92016-02-04 10:52:42 -080012#include "SkCanvas.h"
bsalomon84a4e5a2016-02-29 11:41:52 -080013#include "SkImage_Base.h"
robertphillipsb6c65e92016-02-04 10:52:42 -080014#include "SkSpecialSurface.h"
brianosman898235c2016-04-06 07:38:23 -070015#include "SkSurfacePriv.h"
reedad7604b2016-07-20 16:13:32 -070016#include "SkPixelRef.h"
17
18#if SK_SUPPORT_GPU
19#include "GrContext.h"
20#include "GrTexture.h"
21#include "GrTextureParams.h"
Robert Phillips8bc06d02016-11-01 17:28:40 -040022#include "GrTextureProxy.h"
reedad7604b2016-07-20 16:13:32 -070023#include "SkGr.h"
reedad7604b2016-07-20 16:13:32 -070024#include "SkGrPriv.h"
25#endif
robertphillipsb6c65e92016-02-04 10:52:42 -080026
reeda2217ef2016-07-20 06:04:34 -070027// Currently the raster imagefilters can only handle certain imageinfos. Call this to know if
28// a given info is supported.
29static bool valid_for_imagefilters(const SkImageInfo& info) {
30 // no support for other swizzles/depths yet
31 return info.colorType() == kN32_SkColorType;
32}
33
robertphillipsb6c65e92016-02-04 10:52:42 -080034///////////////////////////////////////////////////////////////////////////////
35class SkSpecialImage_Base : public SkSpecialImage {
36public:
robertphillips3e302272016-04-20 11:48:36 -070037 SkSpecialImage_Base(const SkIRect& subset, uint32_t uniqueID, const SkSurfaceProps* props)
38 : INHERITED(subset, uniqueID, props) {
robertphillips3b087f42016-02-18 08:48:03 -080039 }
robertphillips3e302272016-04-20 11:48:36 -070040 ~SkSpecialImage_Base() override { }
robertphillipsb6c65e92016-02-04 10:52:42 -080041
robertphillipse8c34972016-02-16 12:09:36 -080042 virtual void onDraw(SkCanvas*, SkScalar x, SkScalar y, const SkPaint*) const = 0;
robertphillipsb6c65e92016-02-04 10:52:42 -080043
robertphillips64612512016-04-08 12:10:42 -070044 virtual bool onGetROPixels(SkBitmap*) const = 0;
robertphillipsb6c65e92016-02-04 10:52:42 -080045
Robert Phillips8bc06d02016-11-01 17:28:40 -040046 virtual GrContext* onGetContext() const { return nullptr; }
robertphillipsb6c65e92016-02-04 10:52:42 -080047
brianosmanafbf71d2016-07-21 07:15:37 -070048 virtual SkColorSpace* onGetColorSpace() const = 0;
49
robertphillipsc91fd342016-04-25 12:32:54 -070050#if SK_SUPPORT_GPU
51 virtual sk_sp<GrTexture> onAsTextureRef(GrContext* context) const = 0;
Robert Phillips8bc06d02016-11-01 17:28:40 -040052 virtual sk_sp<GrTextureProxy> onAsTextureProxy(GrContext* context) const = 0;
robertphillipsc91fd342016-04-25 12:32:54 -070053#endif
robertphillips4418dba2016-03-07 12:45:14 -080054
robertphillipsb4bd11e2016-03-21 13:44:18 -070055 virtual sk_sp<SkSpecialImage> onMakeSubset(const SkIRect& subset) const = 0;
56
brianosmaneed6b0e2016-09-23 13:04:05 -070057 virtual sk_sp<SkSpecialSurface> onMakeSurface(const SkImageFilter::OutputProperties& outProps,
58 const SkISize& size, SkAlphaType at) const = 0;
robertphillipsc5035e72016-03-17 06:58:39 -070059
robertphillipsb4bd11e2016-03-21 13:44:18 -070060 virtual sk_sp<SkImage> onMakeTightSubset(const SkIRect& subset) const = 0;
61
brianosmaneed6b0e2016-09-23 13:04:05 -070062 virtual sk_sp<SkSurface> onMakeTightSurface(const SkImageFilter::OutputProperties& outProps,
63 const SkISize& size, SkAlphaType at) const = 0;
robertphillipsb6c65e92016-02-04 10:52:42 -080064
65private:
66 typedef SkSpecialImage INHERITED;
67};
68
69///////////////////////////////////////////////////////////////////////////////
bsalomon84a4e5a2016-02-29 11:41:52 -080070static inline const SkSpecialImage_Base* as_SIB(const SkSpecialImage* image) {
robertphillipsb6c65e92016-02-04 10:52:42 -080071 return static_cast<const SkSpecialImage_Base*>(image);
72}
73
robertphillips3e302272016-04-20 11:48:36 -070074SkSpecialImage::SkSpecialImage(const SkIRect& subset,
brianosman898235c2016-04-06 07:38:23 -070075 uint32_t uniqueID,
76 const SkSurfaceProps* props)
77 : fProps(SkSurfacePropsCopyOrDefault(props))
78 , fSubset(subset)
robertphillips3e302272016-04-20 11:48:36 -070079 , fUniqueID(kNeedNewImageUniqueID_SpecialImage == uniqueID ? SkNextID::ImageID() : uniqueID) {
brianosman898235c2016-04-06 07:38:23 -070080}
81
robertphillips3e302272016-04-20 11:48:36 -070082sk_sp<SkSpecialImage> SkSpecialImage::makeTextureImage(GrContext* context) {
robertphillips83c17fa2016-03-18 08:14:27 -070083#if SK_SUPPORT_GPU
84 if (!context) {
85 return nullptr;
86 }
Robert Phillips8bc06d02016-11-01 17:28:40 -040087 if (GrContext* curContext = as_SIB(this)->onGetContext()) {
88 return curContext == context ? sk_sp<SkSpecialImage>(SkRef(this)) : nullptr;
robertphillips83c17fa2016-03-18 08:14:27 -070089 }
90
91 SkBitmap bmp;
reedcf5c8462016-07-20 12:28:40 -070092 // At this point, we are definitely not texture-backed, so we must be raster or generator
93 // backed. If we remove the special-wrapping-an-image subclass, we may be able to assert that
94 // we are strictly raster-backed (i.e. generator images become raster when they are specialized)
95 // in which case getROPixels could turn into peekPixels...
96 if (!this->getROPixels(&bmp)) {
robertphillips83c17fa2016-03-18 08:14:27 -070097 return nullptr;
98 }
99
robertphillips83f2e5a2016-03-24 06:31:25 -0700100 if (bmp.empty()) {
robertphillips3e302272016-04-20 11:48:36 -0700101 return SkSpecialImage::MakeFromRaster(SkIRect::MakeEmpty(), bmp, &this->props());
robertphillips83f2e5a2016-03-24 06:31:25 -0700102 }
103
Brian Osman7b8400d2016-11-08 17:08:54 -0500104 sk_sp<GrTexture> resultTex(
105 GrRefCachedBitmapTexture(context, bmp, GrTextureParams::ClampNoFilter(),
106 SkDestinationSurfaceColorMode::kGammaAndColorSpaceAware));
robertphillips83c17fa2016-03-18 08:14:27 -0700107 if (!resultTex) {
108 return nullptr;
109 }
110
robertphillips3e302272016-04-20 11:48:36 -0700111 return SkSpecialImage::MakeFromGpu(SkIRect::MakeWH(resultTex->width(), resultTex->height()),
robertphillips83c17fa2016-03-18 08:14:27 -0700112 this->uniqueID(),
brianosmanafbf71d2016-07-21 07:15:37 -0700113 resultTex, sk_ref_sp(this->getColorSpace()), &this->props(),
brianosman80e96082016-08-16 07:09:47 -0700114 this->alphaType());
robertphillips83c17fa2016-03-18 08:14:27 -0700115#else
116 return nullptr;
117#endif
118}
119
robertphillipse8c34972016-02-16 12:09:36 -0800120void SkSpecialImage::draw(SkCanvas* canvas, SkScalar x, SkScalar y, const SkPaint* paint) const {
bsalomon84a4e5a2016-02-29 11:41:52 -0800121 return as_SIB(this)->onDraw(canvas, x, y, paint);
robertphillipsb6c65e92016-02-04 10:52:42 -0800122}
123
robertphillips64612512016-04-08 12:10:42 -0700124bool SkSpecialImage::getROPixels(SkBitmap* bm) const {
125 return as_SIB(this)->onGetROPixels(bm);
robertphillipsb6c65e92016-02-04 10:52:42 -0800126}
127
robertphillips64612512016-04-08 12:10:42 -0700128bool SkSpecialImage::isTextureBacked() const {
Robert Phillips8bc06d02016-11-01 17:28:40 -0400129 return SkToBool(as_SIB(this)->onGetContext());
robertphillipsb6c65e92016-02-04 10:52:42 -0800130}
131
robertphillips64612512016-04-08 12:10:42 -0700132GrContext* SkSpecialImage::getContext() const {
Robert Phillips8bc06d02016-11-01 17:28:40 -0400133 return as_SIB(this)->onGetContext();
robertphillips64612512016-04-08 12:10:42 -0700134}
135
brianosmanafbf71d2016-07-21 07:15:37 -0700136SkColorSpace* SkSpecialImage::getColorSpace() const {
137 return as_SIB(this)->onGetColorSpace();
138}
139
robertphillipsc91fd342016-04-25 12:32:54 -0700140#if SK_SUPPORT_GPU
141sk_sp<GrTexture> SkSpecialImage::asTextureRef(GrContext* context) const {
robertphillips64612512016-04-08 12:10:42 -0700142 return as_SIB(this)->onAsTextureRef(context);
robertphillips4418dba2016-03-07 12:45:14 -0800143}
Robert Phillips8bc06d02016-11-01 17:28:40 -0400144
145sk_sp<GrTextureProxy> SkSpecialImage::asTextureProxy(GrContext* context) const {
146 return as_SIB(this)->onAsTextureProxy(context);
147}
robertphillipsc91fd342016-04-25 12:32:54 -0700148#endif
robertphillips4418dba2016-03-07 12:45:14 -0800149
brianosmaneed6b0e2016-09-23 13:04:05 -0700150sk_sp<SkSpecialSurface> SkSpecialImage::makeSurface(const SkImageFilter::OutputProperties& outProps,
151 const SkISize& size, SkAlphaType at) const {
152 return as_SIB(this)->onMakeSurface(outProps, size, at);
robertphillipsb6c65e92016-02-04 10:52:42 -0800153}
154
brianosmaneed6b0e2016-09-23 13:04:05 -0700155sk_sp<SkSurface> SkSpecialImage::makeTightSurface(const SkImageFilter::OutputProperties& outProps,
156 const SkISize& size, SkAlphaType at) const {
157 return as_SIB(this)->onMakeTightSurface(outProps, size, at);
robertphillipsb4bd11e2016-03-21 13:44:18 -0700158}
159
robertphillips37bd7c32016-03-17 14:31:39 -0700160sk_sp<SkSpecialImage> SkSpecialImage::makeSubset(const SkIRect& subset) const {
161 return as_SIB(this)->onMakeSubset(subset);
robertphillipsc5035e72016-03-17 06:58:39 -0700162}
163
robertphillipsb4bd11e2016-03-21 13:44:18 -0700164sk_sp<SkImage> SkSpecialImage::makeTightSubset(const SkIRect& subset) const {
165 return as_SIB(this)->onMakeTightSubset(subset);
166}
167
robertphillipsb6c65e92016-02-04 10:52:42 -0800168#ifdef SK_DEBUG
169static bool rect_fits(const SkIRect& rect, int width, int height) {
robertphillips4418dba2016-03-07 12:45:14 -0800170 if (0 == width && 0 == height) {
171 SkASSERT(0 == rect.fLeft && 0 == rect.fRight && 0 == rect.fTop && 0 == rect.fBottom);
172 return true;
173 }
174
robertphillipsb6c65e92016-02-04 10:52:42 -0800175 return rect.fLeft >= 0 && rect.fLeft < width && rect.fLeft < rect.fRight &&
176 rect.fRight >= 0 && rect.fRight <= width &&
177 rect.fTop >= 0 && rect.fTop < height && rect.fTop < rect.fBottom &&
178 rect.fBottom >= 0 && rect.fBottom <= height;
179}
180#endif
181
robertphillips3e302272016-04-20 11:48:36 -0700182sk_sp<SkSpecialImage> SkSpecialImage::MakeFromImage(const SkIRect& subset,
brianosman898235c2016-04-06 07:38:23 -0700183 sk_sp<SkImage> image,
184 const SkSurfaceProps* props) {
robertphillipsb6c65e92016-02-04 10:52:42 -0800185 SkASSERT(rect_fits(subset, image->width(), image->height()));
robertphillips37bd7c32016-03-17 14:31:39 -0700186
reedad7604b2016-07-20 16:13:32 -0700187#if SK_SUPPORT_GPU
188 if (GrTexture* texture = as_IB(image)->peekTexture()) {
brianosmanafbf71d2016-07-21 07:15:37 -0700189 return MakeFromGpu(subset, image->uniqueID(), sk_ref_sp(texture),
190 sk_ref_sp(as_IB(image)->onImageInfo().colorSpace()), props);
reedad7604b2016-07-20 16:13:32 -0700191 } else
192#endif
193 {
194 SkBitmap bm;
195 if (as_IB(image)->getROPixels(&bm)) {
196 return MakeFromRaster(subset, bm, props);
197 }
reeda2217ef2016-07-20 06:04:34 -0700198 }
reedad7604b2016-07-20 16:13:32 -0700199 return nullptr;
robertphillipsb6c65e92016-02-04 10:52:42 -0800200}
201
202///////////////////////////////////////////////////////////////////////////////
robertphillipsb6c65e92016-02-04 10:52:42 -0800203
204class SkSpecialImage_Raster : public SkSpecialImage_Base {
205public:
robertphillips3e302272016-04-20 11:48:36 -0700206 SkSpecialImage_Raster(const SkIRect& subset, const SkBitmap& bm, const SkSurfaceProps* props)
207 : INHERITED(subset, bm.getGenerationID(), props)
reedbd2bd5c2016-07-25 14:26:02 -0700208 , fBitmap(bm)
209 {
210 SkASSERT(bm.pixelRef());
211
212 // We have to lock now, while bm is still in scope, since it may have come from our
213 // cache, which means we need to keep it locked until we (the special) are done, since
214 // we cannot re-generate the cache entry (if bm came from a generator).
215 fBitmap.lockPixels();
216 SkASSERT(fBitmap.getPixels());
robertphillipsb6c65e92016-02-04 10:52:42 -0800217 }
218
brianosman80e96082016-08-16 07:09:47 -0700219 SkAlphaType alphaType() const override { return fBitmap.alphaType(); }
robertphillips3b087f42016-02-18 08:48:03 -0800220
221 size_t getSize() const override { return fBitmap.getSize(); }
222
robertphillipse8c34972016-02-16 12:09:36 -0800223 void onDraw(SkCanvas* canvas, SkScalar x, SkScalar y, const SkPaint* paint) const override {
robertphillipsb6c65e92016-02-04 10:52:42 -0800224 SkRect dst = SkRect::MakeXYWH(x, y,
225 this->subset().width(), this->subset().height());
226
227 canvas->drawBitmapRect(fBitmap, this->subset(),
228 dst, paint, SkCanvas::kStrict_SrcRectConstraint);
229 }
230
robertphillips64612512016-04-08 12:10:42 -0700231 bool onGetROPixels(SkBitmap* bm) const override {
232 *bm = fBitmap;
robertphillips3b087f42016-02-18 08:48:03 -0800233 return true;
234 }
235
brianosmanafbf71d2016-07-21 07:15:37 -0700236 SkColorSpace* onGetColorSpace() const override {
237 return fBitmap.colorSpace();
238 }
239
robertphillips64612512016-04-08 12:10:42 -0700240#if SK_SUPPORT_GPU
robertphillipsc91fd342016-04-25 12:32:54 -0700241 sk_sp<GrTexture> onAsTextureRef(GrContext* context) const override {
robertphillips64612512016-04-08 12:10:42 -0700242 if (context) {
Brian Osman7b8400d2016-11-08 17:08:54 -0500243 return sk_ref_sp(
244 GrRefCachedBitmapTexture(context, fBitmap, GrTextureParams::ClampNoFilter(),
245 SkDestinationSurfaceColorMode::kGammaAndColorSpaceAware));
robertphillips64612512016-04-08 12:10:42 -0700246 }
robertphillips64612512016-04-08 12:10:42 -0700247
248 return nullptr;
249 }
Robert Phillips8bc06d02016-11-01 17:28:40 -0400250
251 sk_sp<GrTextureProxy> onAsTextureProxy(GrContext* context) const override {
252 if (context) {
Brian Osman7b8400d2016-11-08 17:08:54 -0500253 sk_sp<GrTexture> tex(sk_ref_sp(
254 GrRefCachedBitmapTexture(context, fBitmap, GrTextureParams::ClampNoFilter(),
255 SkDestinationSurfaceColorMode::kGammaAndColorSpaceAware)));
Robert Phillips8bc06d02016-11-01 17:28:40 -0400256 return GrTextureProxy::Make(tex);
257 }
258
259 return nullptr;
260 }
robertphillipsc91fd342016-04-25 12:32:54 -0700261#endif
robertphillips64612512016-04-08 12:10:42 -0700262
brianosmaneed6b0e2016-09-23 13:04:05 -0700263// TODO: The raster implementations of image filters all currently assume that the pixels are
264// legacy N32. Until they actually check the format and operate on sRGB or F16 data appropriately,
265// we can't enable this. (They will continue to produce incorrect results, but less-so).
266#define RASTER_IMAGE_FILTERS_SUPPORT_SRGB_AND_F16 0
267
268 sk_sp<SkSpecialSurface> onMakeSurface(const SkImageFilter::OutputProperties& outProps,
269 const SkISize& size, SkAlphaType at) const override {
270#if RASTER_IMAGE_FILTERS_SUPPORT_SRGB_AND_F16
271 SkColorSpace* colorSpace = outProps.colorSpace();
272#else
273 SkColorSpace* colorSpace = nullptr;
274#endif
275 SkColorType colorType = colorSpace && colorSpace->gammaIsLinear()
276 ? kRGBA_F16_SkColorType : kN32_SkColorType;
277 SkImageInfo info = SkImageInfo::Make(size.width(), size.height(), colorType, at,
278 sk_ref_sp(colorSpace));
robertphillips3e302272016-04-20 11:48:36 -0700279 return SkSpecialSurface::MakeRaster(info, nullptr);
robertphillipsb6c65e92016-02-04 10:52:42 -0800280 }
281
robertphillips37bd7c32016-03-17 14:31:39 -0700282 sk_sp<SkSpecialImage> onMakeSubset(const SkIRect& subset) const override {
robertphillipsc5035e72016-03-17 06:58:39 -0700283 SkBitmap subsetBM;
halcanary9d524f22016-03-29 09:03:52 -0700284
robertphillipsc5035e72016-03-17 06:58:39 -0700285 if (!fBitmap.extractSubset(&subsetBM, subset)) {
286 return nullptr;
287 }
288
robertphillips3e302272016-04-20 11:48:36 -0700289 return SkSpecialImage::MakeFromRaster(SkIRect::MakeWH(subset.width(), subset.height()),
brianosman898235c2016-04-06 07:38:23 -0700290 subsetBM,
291 &this->props());
robertphillipsc5035e72016-03-17 06:58:39 -0700292 }
293
robertphillipsb4bd11e2016-03-21 13:44:18 -0700294 sk_sp<SkImage> onMakeTightSubset(const SkIRect& subset) const override {
295 SkBitmap subsetBM;
296
297 if (!fBitmap.extractSubset(&subsetBM, subset)) {
298 return nullptr;
299 }
300
301 return SkImage::MakeFromBitmap(subsetBM);
302 }
303
brianosmaneed6b0e2016-09-23 13:04:05 -0700304 sk_sp<SkSurface> onMakeTightSurface(const SkImageFilter::OutputProperties& outProps,
305 const SkISize& size, SkAlphaType at) const override {
306#if RASTER_IMAGE_FILTERS_SUPPORT_SRGB_AND_F16
307 SkColorSpace* colorSpace = outProps.colorSpace();
308#else
309 SkColorSpace* colorSpace = nullptr;
310#endif
311 SkColorType colorType = colorSpace && colorSpace->gammaIsLinear()
312 ? kRGBA_F16_SkColorType : kN32_SkColorType;
313 SkImageInfo info = SkImageInfo::Make(size.width(), size.height(), colorType, at,
314 sk_ref_sp(colorSpace));
reede8f30622016-03-23 18:59:25 -0700315 return SkSurface::MakeRaster(info);
robertphillipsb4bd11e2016-03-21 13:44:18 -0700316 }
317
robertphillipsb6c65e92016-02-04 10:52:42 -0800318private:
319 SkBitmap fBitmap;
320
321 typedef SkSpecialImage_Base INHERITED;
322};
323
robertphillips3e302272016-04-20 11:48:36 -0700324sk_sp<SkSpecialImage> SkSpecialImage::MakeFromRaster(const SkIRect& subset,
brianosman898235c2016-04-06 07:38:23 -0700325 const SkBitmap& bm,
326 const SkSurfaceProps* props) {
robertphillipsb6c65e92016-02-04 10:52:42 -0800327 SkASSERT(rect_fits(subset, bm.width(), bm.height()));
robertphillips37bd7c32016-03-17 14:31:39 -0700328
reedbd2bd5c2016-07-25 14:26:02 -0700329 if (!bm.pixelRef()) {
330 return nullptr;
331 }
332
reeda2217ef2016-07-20 06:04:34 -0700333 const SkBitmap* srcBM = &bm;
334 SkBitmap tmpStorage;
335 // ImageFilters only handle N32 at the moment, so force our src to be that
336 if (!valid_for_imagefilters(bm.info())) {
337 if (!bm.copyTo(&tmpStorage, kN32_SkColorType)) {
338 return nullptr;
339 }
340 srcBM = &tmpStorage;
341 }
342 return sk_make_sp<SkSpecialImage_Raster>(subset, *srcBM, props);
robertphillipsb6c65e92016-02-04 10:52:42 -0800343}
344
345#if SK_SUPPORT_GPU
346///////////////////////////////////////////////////////////////////////////////
robertphillipsed086ca2016-04-26 15:02:25 -0700347#include "GrTexture.h"
robertphillipsb4bd11e2016-03-21 13:44:18 -0700348#include "SkImage_Gpu.h"
robertphillipsb6c65e92016-02-04 10:52:42 -0800349
robertphillipsed086ca2016-04-26 15:02:25 -0700350class SkSpecialImage_Gpu : public SkSpecialImage_Base {
351public:
352 SkSpecialImage_Gpu(const SkIRect& subset,
353 uint32_t uniqueID, sk_sp<GrTexture> tex, SkAlphaType at,
brianosmanafbf71d2016-07-21 07:15:37 -0700354 sk_sp<SkColorSpace> colorSpace, const SkSurfaceProps* props)
robertphillipsed086ca2016-04-26 15:02:25 -0700355 : INHERITED(subset, uniqueID, props)
Robert Phillips8bc06d02016-11-01 17:28:40 -0400356 , fContext(tex->getContext())
357 , fAlphaType(at)
358 , fColorSpace(std::move(colorSpace))
359 , fAddedRasterVersionToCache(false) {
360 fTextureProxy = GrTextureProxy::Make(std::move(tex));
361 }
362
363 SkSpecialImage_Gpu(GrContext* context, const SkIRect& subset,
364 uint32_t uniqueID, sk_sp<GrTextureProxy> proxy, SkAlphaType at,
365 sk_sp<SkColorSpace> colorSpace, const SkSurfaceProps* props)
366 : INHERITED(subset, uniqueID, props)
367 , fContext(context)
368 , fTextureProxy(std::move(proxy))
robertphillipsed086ca2016-04-26 15:02:25 -0700369 , fAlphaType(at)
brianosmanafbf71d2016-07-21 07:15:37 -0700370 , fColorSpace(std::move(colorSpace))
robertphillipsed086ca2016-04-26 15:02:25 -0700371 , fAddedRasterVersionToCache(false) {
372 }
373
374 ~SkSpecialImage_Gpu() override {
375 if (fAddedRasterVersionToCache.load()) {
376 SkNotifyBitmapGenIDIsStale(this->uniqueID());
377 }
378 }
379
brianosman80e96082016-08-16 07:09:47 -0700380 SkAlphaType alphaType() const override { return fAlphaType; }
robertphillipsed086ca2016-04-26 15:02:25 -0700381
Robert Phillips8bc06d02016-11-01 17:28:40 -0400382 size_t getSize() const override { return fTextureProxy->gpuMemorySize(); }
robertphillipsed086ca2016-04-26 15:02:25 -0700383
384 void onDraw(SkCanvas* canvas, SkScalar x, SkScalar y, const SkPaint* paint) const override {
385 SkRect dst = SkRect::MakeXYWH(x, y,
386 this->subset().width(), this->subset().height());
387
Robert Phillips8bc06d02016-11-01 17:28:40 -0400388 // TODO: add GrTextureProxy-backed SkImage_Gpus
389 sk_sp<GrTexture> tex = sk_ref_sp(fTextureProxy->instantiate(fContext->textureProvider()));
390
391 auto img = sk_sp<SkImage>(new SkImage_Gpu(fTextureProxy->width(), fTextureProxy->height(),
392 this->uniqueID(), fAlphaType, std::move(tex),
brianosmanafbf71d2016-07-21 07:15:37 -0700393 fColorSpace, SkBudgeted::kNo));
robertphillipsed086ca2016-04-26 15:02:25 -0700394
reed77d6f7d2016-07-13 12:24:48 -0700395 canvas->drawImageRect(img, this->subset(),
robertphillipsed086ca2016-04-26 15:02:25 -0700396 dst, paint, SkCanvas::kStrict_SrcRectConstraint);
397 }
398
Robert Phillips8bc06d02016-11-01 17:28:40 -0400399 GrContext* onGetContext() const override { return fContext; }
robertphillipsed086ca2016-04-26 15:02:25 -0700400
Robert Phillips8bc06d02016-11-01 17:28:40 -0400401 // This entry point should go away in favor of asTextureProxy
402 sk_sp<GrTexture> onAsTextureRef(GrContext* context) const override {
403 return sk_ref_sp(fTextureProxy->instantiate(context->textureProvider()));
404 }
405
406 sk_sp<GrTextureProxy> onAsTextureProxy(GrContext*) const override {
407 return fTextureProxy;
408 }
robertphillipsed086ca2016-04-26 15:02:25 -0700409
410 bool onGetROPixels(SkBitmap* dst) const override {
411 if (SkBitmapCache::Find(this->uniqueID(), dst)) {
412 SkASSERT(dst->getGenerationID() == this->uniqueID());
413 SkASSERT(dst->isImmutable());
414 SkASSERT(dst->getPixels());
415 return true;
416 }
417
418 SkImageInfo info = SkImageInfo::MakeN32(this->width(), this->height(),
brianosman80e96082016-08-16 07:09:47 -0700419 this->alphaType(), fColorSpace);
robertphillipsed086ca2016-04-26 15:02:25 -0700420
421 if (!dst->tryAllocPixels(info)) {
422 return false;
423 }
424
Robert Phillips8bc06d02016-11-01 17:28:40 -0400425 // Reading back to an SkBitmap ends deferral
426 GrTexture* texture = fTextureProxy->instantiate(fContext->textureProvider());
427
428 if (!texture->readPixels(0, 0, dst->width(), dst->height(), kSkia8888_GrPixelConfig,
429 dst->getPixels(), dst->rowBytes())) {
robertphillipsed086ca2016-04-26 15:02:25 -0700430 return false;
431 }
432
433 dst->pixelRef()->setImmutableWithID(this->uniqueID());
434 SkBitmapCache::Add(this->uniqueID(), *dst);
435 fAddedRasterVersionToCache.store(true);
436 return true;
437 }
438
brianosmanafbf71d2016-07-21 07:15:37 -0700439 SkColorSpace* onGetColorSpace() const override {
440 return fColorSpace.get();
441 }
442
brianosmaneed6b0e2016-09-23 13:04:05 -0700443 sk_sp<SkSpecialSurface> onMakeSurface(const SkImageFilter::OutputProperties& outProps,
444 const SkISize& size, SkAlphaType at) const override {
Robert Phillips8bc06d02016-11-01 17:28:40 -0400445 if (!fContext) {
robertphillipsed086ca2016-04-26 15:02:25 -0700446 return nullptr;
447 }
448
brianosmaneed6b0e2016-09-23 13:04:05 -0700449 SkColorSpace* colorSpace = outProps.colorSpace();
450 return SkSpecialSurface::MakeRenderTarget(
Robert Phillips8bc06d02016-11-01 17:28:40 -0400451 fContext, size.width(), size.height(),
brianosmaneed6b0e2016-09-23 13:04:05 -0700452 GrRenderableConfigForColorSpace(colorSpace), sk_ref_sp(colorSpace));
robertphillipsed086ca2016-04-26 15:02:25 -0700453 }
454
455 sk_sp<SkSpecialImage> onMakeSubset(const SkIRect& subset) const override {
Robert Phillips8bc06d02016-11-01 17:28:40 -0400456 return SkSpecialImage::MakeDeferredFromGpu(fContext,
457 subset,
458 this->uniqueID(),
459 fTextureProxy,
460 fColorSpace,
461 &this->props(),
462 fAlphaType);
robertphillipsed086ca2016-04-26 15:02:25 -0700463 }
464
465 sk_sp<SkImage> onMakeTightSubset(const SkIRect& subset) const override {
Robert Phillips8bc06d02016-11-01 17:28:40 -0400466 // TODO: add GrTextureProxy-backed SkImage_Gpus
467 sk_sp<GrTexture> tex = sk_ref_sp(fTextureProxy->instantiate(fContext->textureProvider()));
468
robertphillipsed086ca2016-04-26 15:02:25 -0700469 if (0 == subset.fLeft && 0 == subset.fTop &&
Robert Phillips8bc06d02016-11-01 17:28:40 -0400470 fTextureProxy->width() == subset.width() &&
471 fTextureProxy->height() == subset.height()) {
robertphillipsed086ca2016-04-26 15:02:25 -0700472 // The existing GrTexture is already tight so reuse it in the SkImage
Robert Phillips8bc06d02016-11-01 17:28:40 -0400473 return sk_make_sp<SkImage_Gpu>(tex->width(), tex->height(),
robertphillipsed086ca2016-04-26 15:02:25 -0700474 kNeedNewImageUniqueID,
Robert Phillips8bc06d02016-11-01 17:28:40 -0400475 fAlphaType, std::move(tex), fColorSpace,
brianosmanafbf71d2016-07-21 07:15:37 -0700476 SkBudgeted::kYes);
robertphillipsed086ca2016-04-26 15:02:25 -0700477 }
478
Robert Phillips8bc06d02016-11-01 17:28:40 -0400479 GrSurfaceDesc desc = fTextureProxy->desc();
robertphillipsed086ca2016-04-26 15:02:25 -0700480 desc.fWidth = subset.width();
481 desc.fHeight = subset.height();
482
Robert Phillips8bc06d02016-11-01 17:28:40 -0400483 sk_sp<GrTexture> subTx(fContext->textureProvider()->createTexture(desc, SkBudgeted::kYes));
robertphillipsed086ca2016-04-26 15:02:25 -0700484 if (!subTx) {
485 return nullptr;
486 }
Robert Phillips8bc06d02016-11-01 17:28:40 -0400487 fContext->copySurface(subTx.get(), tex.get(), subset, SkIPoint::Make(0, 0));
robertphillipsed086ca2016-04-26 15:02:25 -0700488 return sk_make_sp<SkImage_Gpu>(desc.fWidth, desc.fHeight, kNeedNewImageUniqueID,
bungeman6bd52842016-10-27 09:30:08 -0700489 fAlphaType, std::move(subTx), fColorSpace, SkBudgeted::kYes);
robertphillipsed086ca2016-04-26 15:02:25 -0700490 }
491
brianosmaneed6b0e2016-09-23 13:04:05 -0700492 sk_sp<SkSurface> onMakeTightSurface(const SkImageFilter::OutputProperties& outProps,
493 const SkISize& size, SkAlphaType at) const override {
494 SkColorSpace* colorSpace = outProps.colorSpace();
495 SkColorType colorType = colorSpace && colorSpace->gammaIsLinear()
496 ? kRGBA_F16_SkColorType : kRGBA_8888_SkColorType;
497 SkImageInfo info = SkImageInfo::Make(size.width(), size.height(), colorType, at,
498 sk_ref_sp(colorSpace));
Robert Phillips8bc06d02016-11-01 17:28:40 -0400499 return SkSurface::MakeRenderTarget(fContext, SkBudgeted::kYes, info);
robertphillipsed086ca2016-04-26 15:02:25 -0700500 }
501
502private:
Robert Phillips8bc06d02016-11-01 17:28:40 -0400503 GrContext* fContext;
504 sk_sp<GrTextureProxy> fTextureProxy;
robertphillipsed086ca2016-04-26 15:02:25 -0700505 const SkAlphaType fAlphaType;
brianosmanafbf71d2016-07-21 07:15:37 -0700506 sk_sp<SkColorSpace> fColorSpace;
robertphillipsed086ca2016-04-26 15:02:25 -0700507 mutable SkAtomic<bool> fAddedRasterVersionToCache;
508
509 typedef SkSpecialImage_Base INHERITED;
510};
511
robertphillips3e302272016-04-20 11:48:36 -0700512sk_sp<SkSpecialImage> SkSpecialImage::MakeFromGpu(const SkIRect& subset,
robertphillips37bd7c32016-03-17 14:31:39 -0700513 uint32_t uniqueID,
robertphillipsc91fd342016-04-25 12:32:54 -0700514 sk_sp<GrTexture> tex,
brianosmanafbf71d2016-07-21 07:15:37 -0700515 sk_sp<SkColorSpace> colorSpace,
brianosman898235c2016-04-06 07:38:23 -0700516 const SkSurfaceProps* props,
robertphillips37bd7c32016-03-17 14:31:39 -0700517 SkAlphaType at) {
robertphillipsb6c65e92016-02-04 10:52:42 -0800518 SkASSERT(rect_fits(subset, tex->width(), tex->height()));
brianosmanafbf71d2016-07-21 07:15:37 -0700519 return sk_make_sp<SkSpecialImage_Gpu>(subset, uniqueID, std::move(tex), at,
520 std::move(colorSpace), props);
robertphillipsb6c65e92016-02-04 10:52:42 -0800521}
522
Robert Phillips8bc06d02016-11-01 17:28:40 -0400523sk_sp<SkSpecialImage> SkSpecialImage::MakeDeferredFromGpu(GrContext* context,
524 const SkIRect& subset,
525 uint32_t uniqueID,
526 sk_sp<GrTextureProxy> proxy,
527 sk_sp<SkColorSpace> colorSpace,
528 const SkSurfaceProps* props,
529 SkAlphaType at) {
530 SkASSERT(rect_fits(subset, proxy->width(), proxy->height()));
531 return sk_make_sp<SkSpecialImage_Gpu>(context, subset, uniqueID, std::move(proxy), at,
532 std::move(colorSpace), props);
533}
robertphillipsb6c65e92016-02-04 10:52:42 -0800534#endif