blob: 2edff60553c2118466f5e11773bf87781309ba77 [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
84GrTexture* GrBitmapTextureMaker::refOriginalTexture() {
85 GrTexture* tex;
86
87 if (fOriginalKey.isValid()) {
88 tex = this->context()->textureProvider()->findAndRefTextureByUniqueKey(fOriginalKey);
89 if (tex) {
90 return tex;
91 }
92 }
93
94 tex = GrUploadBitmapToTexture(this->context(), fBitmap);
95 if (tex && fOriginalKey.isValid()) {
96 tex->resourcePriv().setUniqueKey(fOriginalKey);
97 GrInstallBitmapUniqueKeyInvalidator(fOriginalKey, fBitmap.pixelRef());
98 }
99 return tex;
100}
101
102void GrBitmapTextureMaker::makeCopyKey(const CopyParams& copyParams, GrUniqueKey* copyKey) {
103 if (fOriginalKey.isValid()) {
104 MakeCopyKeyFromOrigKey(fOriginalKey, copyParams, copyKey);
105 }
106}
107
108void GrBitmapTextureMaker::didCacheCopy(const GrUniqueKey& copyKey) {
109 GrInstallBitmapUniqueKeyInvalidator(copyKey, fBitmap.pixelRef());
110}
bsalomon1cf6f9b2015-12-08 10:53:43 -0800111
112//////////////////////////////////////////////////////////////////////////////
bsalomonf1ecd212015-12-09 17:06:02 -0800113static bool cacher_is_alpha_only(const SkImageCacherator& cacher) {
114 return kAlpha_8_SkColorType == cacher.info().colorType();
115}
bsalomon1cf6f9b2015-12-08 10:53:43 -0800116GrImageTextureMaker::GrImageTextureMaker(GrContext* context, SkImageCacherator* cacher,
117 const SkImage* client, SkImage::CachingHint chint)
bsalomonf1ecd212015-12-09 17:06:02 -0800118 : INHERITED(context, cacher->info().width(), cacher->info().height(),
119 cacher_is_alpha_only(*cacher))
bsalomon1cf6f9b2015-12-08 10:53:43 -0800120 , fCacher(cacher)
121 , fClient(client)
122 , fCachingHint(chint) {
123 if (client) {
124 GrMakeKeyFromImageID(&fOriginalKey, client->uniqueID(),
125 SkIRect::MakeWH(this->width(), this->height()));
126 }
127}
128
129GrTexture* GrImageTextureMaker::refOriginalTexture() {
130 return fCacher->lockTexture(this->context(), fOriginalKey, fClient, fCachingHint);
131}
132
133void GrImageTextureMaker::makeCopyKey(const CopyParams& stretch, GrUniqueKey* paramsCopyKey) {
134 if (fOriginalKey.isValid() && SkImage::kAllow_CachingHint == fCachingHint) {
135 MakeCopyKeyFromOrigKey(fOriginalKey, stretch, paramsCopyKey);
136 }
137}
138
139void GrImageTextureMaker::didCacheCopy(const GrUniqueKey& copyKey) {
140 if (fClient) {
141 as_IB(fClient)->notifyAddedToCache();
142 }
143}