blob: 24cb05f9375c1faba055e0a3384442272ccdd0cc [file] [log] [blame]
Brian Osman3b66ab62016-11-28 09:26:31 -05001/*
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 */
7
8#include "GrBitmapTextureMaker.h"
9
10#include "GrContext.h"
11#include "GrGpuResourcePriv.h"
Brian Osman32342f02017-03-04 08:12:46 -050012#include "GrResourceProvider.h"
Brian Osman3b66ab62016-11-28 09:26:31 -050013#include "SkBitmap.h"
14#include "SkGrPriv.h"
15#include "SkPixelRef.h"
16
17static bool bmp_is_alpha_only(const SkBitmap& bm) { return kAlpha_8_SkColorType == bm.colorType(); }
18
19GrBitmapTextureMaker::GrBitmapTextureMaker(GrContext* context, const SkBitmap& bitmap)
20 : INHERITED(context, bitmap.width(), bitmap.height(), bmp_is_alpha_only(bitmap))
21 , fBitmap(bitmap) {
22 if (!bitmap.isVolatile()) {
23 SkIPoint origin = bitmap.pixelRefOrigin();
24 SkIRect subset = SkIRect::MakeXYWH(origin.fX, origin.fY, bitmap.width(),
25 bitmap.height());
26 GrMakeKeyFromImageID(&fOriginalKey, bitmap.pixelRef()->getGenerationID(), subset);
27 }
28}
29
30GrTexture* GrBitmapTextureMaker::refOriginalTexture(bool willBeMipped,
Brian Osman61624f02016-12-09 14:51:59 -050031 SkColorSpace* dstColorSpace) {
Brian Osman3b66ab62016-11-28 09:26:31 -050032 GrTexture* tex = nullptr;
33
34 if (fOriginalKey.isValid()) {
Brian Osman32342f02017-03-04 08:12:46 -050035 tex = this->context()->resourceProvider()->findAndRefTextureByUniqueKey(fOriginalKey);
Brian Osman3b66ab62016-11-28 09:26:31 -050036 if (tex) {
37 return tex;
38 }
39 }
40 if (willBeMipped) {
Brian Osman61624f02016-12-09 14:51:59 -050041 tex = GrGenerateMipMapsAndUploadToTexture(this->context(), fBitmap, dstColorSpace);
Brian Osman3b66ab62016-11-28 09:26:31 -050042 }
43 if (!tex) {
44 tex = GrUploadBitmapToTexture(this->context(), fBitmap);
45 }
46 if (tex && fOriginalKey.isValid()) {
Brian Osman32342f02017-03-04 08:12:46 -050047 this->context()->resourceProvider()->assignUniqueKeyToTexture(fOriginalKey, tex);
Brian Osman3b66ab62016-11-28 09:26:31 -050048 GrInstallBitmapUniqueKeyInvalidator(fOriginalKey, fBitmap.pixelRef());
49 }
50 return tex;
51}
52
53void GrBitmapTextureMaker::makeCopyKey(const CopyParams& copyParams, GrUniqueKey* copyKey,
Brian Osman61624f02016-12-09 14:51:59 -050054 SkColorSpace* dstColorSpace) {
55 // Destination color space is irrelevant - we always upload the bitmap's contents as-is
Brian Osman3b66ab62016-11-28 09:26:31 -050056 if (fOriginalKey.isValid()) {
57 MakeCopyKeyFromOrigKey(fOriginalKey, copyParams, copyKey);
58 }
59}
60
61void GrBitmapTextureMaker::didCacheCopy(const GrUniqueKey& copyKey) {
62 GrInstallBitmapUniqueKeyInvalidator(copyKey, fBitmap.pixelRef());
63}
64
65SkAlphaType GrBitmapTextureMaker::alphaType() const {
66 return fBitmap.alphaType();
67}
68
Brian Osman61624f02016-12-09 14:51:59 -050069sk_sp<SkColorSpace> GrBitmapTextureMaker::getColorSpace(SkColorSpace* dstColorSpace) {
70 // Color space doesn't depend on destination color space - it's just whatever is in the bitmap
Robert Phillips256c37b2017-03-01 14:32:46 -050071 return fBitmap.refColorSpace();
Brian Osman3b66ab62016-11-28 09:26:31 -050072}