blob: 58dc5b975b821c8958e25956b3a92763fec1a66b [file] [log] [blame]
bsalomonc55271f2015-11-09 11:55:57 -08001/*
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#include "GrImageIDTextureAdjuster.h"
9
bsalomonb1b01992015-11-18 10:56:08 -080010#include "GrContext.h"
11#include "GrGpuResourcePriv.h"
bsalomonc55271f2015-11-09 11:55:57 -080012#include "SkBitmap.h"
13#include "SkGrPriv.h"
14#include "SkImage_Base.h"
bsalomon1cf6f9b2015-12-08 10:53:43 -080015#include "SkImageCacherator.h"
bsalomonb1b01992015-11-18 10:56:08 -080016#include "SkPixelRef.h"
bsalomonc55271f2015-11-09 11:55:57 -080017
bsalomonf1ecd212015-12-09 17:06:02 -080018static bool bmp_is_alpha_only(const SkBitmap& bm) { return kAlpha_8_SkColorType == bm.colorType(); }
19
bsalomonc55271f2015-11-09 11:55:57 -080020GrBitmapTextureAdjuster::GrBitmapTextureAdjuster(const SkBitmap* bmp)
bsalomonf1ecd212015-12-09 17:06:02 -080021 : INHERITED(bmp->getTexture(),
22 SkIRect::MakeWH(bmp->width(), bmp->height()),
23 bmp_is_alpha_only(*bmp))
bsalomonc55271f2015-11-09 11:55:57 -080024 , fBmp(bmp) {}
25
26void GrBitmapTextureAdjuster::makeCopyKey(const CopyParams& params, GrUniqueKey* copyKey) {
27 if (fBmp->isVolatile()) {
28 return;
29 }
30 // The content area must represent the whole bitmap. Texture-backed bitmaps don't support
31 // extractSubset(). Therefore, either the bitmap and the texture are the same size or the
32 // content's dimensions are the bitmap's dimensions which is pinned to the upper left
33 // of the texture.
34 GrUniqueKey baseKey;
35 GrMakeKeyFromImageID(&baseKey, fBmp->getGenerationID(),
36 SkIRect::MakeWH(fBmp->width(), fBmp->height()));
37 MakeCopyKeyFromOrigKey(baseKey, params, copyKey);
38}
39
40void GrBitmapTextureAdjuster::didCacheCopy(const GrUniqueKey& copyKey) {
41 GrInstallBitmapUniqueKeyInvalidator(copyKey, fBmp->pixelRef());
42}
43
44//////////////////////////////////////////////////////////////////////////////
45
bsalomonf1ecd212015-12-09 17:06:02 -080046// SkImage's don't have a way of communicating whether they're alpha-only. So we fallback to
47// inspecting the texture.
48static bool tex_image_is_alpha_only(const SkImage_Base& img) {
49 return GrPixelConfigIsAlphaOnly(img.peekTexture()->config());
50}
51
bsalomonc55271f2015-11-09 11:55:57 -080052GrImageTextureAdjuster::GrImageTextureAdjuster(const SkImage_Base* img)
bsalomonf1ecd212015-12-09 17:06:02 -080053 : INHERITED(img->peekTexture(), SkIRect::MakeWH(img->width(), img->height()),
54 tex_image_is_alpha_only(*img))
bsalomonc55271f2015-11-09 11:55:57 -080055 , fImageBase(img) {}
56
57void GrImageTextureAdjuster::makeCopyKey(const CopyParams& params, GrUniqueKey* copyKey) {
58 // By construction this texture adjuster always represents an entire SkImage, so use the
59 // image's width and height for the key's rectangle.
60 GrUniqueKey baseKey;
61 GrMakeKeyFromImageID(&baseKey, fImageBase->uniqueID(),
62 SkIRect::MakeWH(fImageBase->width(), fImageBase->height()));
63 MakeCopyKeyFromOrigKey(baseKey, params, copyKey);
64}
65
66void GrImageTextureAdjuster::didCacheCopy(const GrUniqueKey& copyKey) {
67 // We don't currently have a mechanism for notifications on Images!
68}
bsalomonb1b01992015-11-18 10:56:08 -080069
70//////////////////////////////////////////////////////////////////////////////
71
72GrBitmapTextureMaker::GrBitmapTextureMaker(GrContext* context, const SkBitmap& bitmap)
bsalomonf1ecd212015-12-09 17:06:02 -080073 : INHERITED(context, bitmap.width(), bitmap.height(), bmp_is_alpha_only(bitmap))
bsalomonb1b01992015-11-18 10:56:08 -080074 , fBitmap(bitmap) {
75 SkASSERT(!bitmap.getTexture());
76 if (!bitmap.isVolatile()) {
77 SkIPoint origin = bitmap.pixelRefOrigin();
78 SkIRect subset = SkIRect::MakeXYWH(origin.fX, origin.fY, bitmap.width(),
79 bitmap.height());
80 GrMakeKeyFromImageID(&fOriginalKey, bitmap.pixelRef()->getGenerationID(), subset);
81 }
82}
83
cblume55f2d2d2016-02-26 13:20:48 -080084GrTexture* GrBitmapTextureMaker::refOriginalTexture(bool willBeMipped) {
bsalomonb1b01992015-11-18 10:56:08 -080085 GrTexture* tex;
86
87 if (fOriginalKey.isValid()) {
88 tex = this->context()->textureProvider()->findAndRefTextureByUniqueKey(fOriginalKey);
89 if (tex) {
90 return tex;
91 }
92 }
93
cblume55f2d2d2016-02-26 13:20:48 -080094 if (willBeMipped) {
95 tex = GrGenerateMipMapsAndUploadToTexture(this->context(), fBitmap);
96 } else {
97 tex = GrUploadBitmapToTexture(this->context(), fBitmap);
98 }
bsalomonb1b01992015-11-18 10:56:08 -080099 if (tex && fOriginalKey.isValid()) {
100 tex->resourcePriv().setUniqueKey(fOriginalKey);
101 GrInstallBitmapUniqueKeyInvalidator(fOriginalKey, fBitmap.pixelRef());
102 }
103 return tex;
104}
105
106void GrBitmapTextureMaker::makeCopyKey(const CopyParams& copyParams, GrUniqueKey* copyKey) {
107 if (fOriginalKey.isValid()) {
108 MakeCopyKeyFromOrigKey(fOriginalKey, copyParams, copyKey);
109 }
110}
111
112void GrBitmapTextureMaker::didCacheCopy(const GrUniqueKey& copyKey) {
113 GrInstallBitmapUniqueKeyInvalidator(copyKey, fBitmap.pixelRef());
114}
bsalomon1cf6f9b2015-12-08 10:53:43 -0800115
116//////////////////////////////////////////////////////////////////////////////
bsalomonf1ecd212015-12-09 17:06:02 -0800117static bool cacher_is_alpha_only(const SkImageCacherator& cacher) {
118 return kAlpha_8_SkColorType == cacher.info().colorType();
119}
bsalomon1cf6f9b2015-12-08 10:53:43 -0800120GrImageTextureMaker::GrImageTextureMaker(GrContext* context, SkImageCacherator* cacher,
121 const SkImage* client, SkImage::CachingHint chint)
bsalomonf1ecd212015-12-09 17:06:02 -0800122 : INHERITED(context, cacher->info().width(), cacher->info().height(),
123 cacher_is_alpha_only(*cacher))
bsalomon1cf6f9b2015-12-08 10:53:43 -0800124 , fCacher(cacher)
125 , fClient(client)
126 , fCachingHint(chint) {
127 if (client) {
128 GrMakeKeyFromImageID(&fOriginalKey, client->uniqueID(),
129 SkIRect::MakeWH(this->width(), this->height()));
130 }
131}
132
cblume55f2d2d2016-02-26 13:20:48 -0800133GrTexture* GrImageTextureMaker::refOriginalTexture(bool willBeMipped) {
134 return fCacher->lockTexture(this->context(), fOriginalKey, fClient, fCachingHint, willBeMipped);
bsalomon1cf6f9b2015-12-08 10:53:43 -0800135}
136
137void GrImageTextureMaker::makeCopyKey(const CopyParams& stretch, GrUniqueKey* paramsCopyKey) {
138 if (fOriginalKey.isValid() && SkImage::kAllow_CachingHint == fCachingHint) {
139 MakeCopyKeyFromOrigKey(fOriginalKey, stretch, paramsCopyKey);
140 }
141}
142
143void GrImageTextureMaker::didCacheCopy(const GrUniqueKey& copyKey) {
144 if (fClient) {
145 as_IB(fClient)->notifyAddedToCache();
146 }
147}