Brian Osman | 3b66ab6 | 2016-11-28 09:26:31 -0500 | [diff] [blame] | 1 | /* |
| 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 | #ifndef GrBitmapTextureMaker_DEFINED |
| 9 | #define GrBitmapTextureMaker_DEFINED |
| 10 | |
Brian Osman | e8e5458 | 2016-11-28 10:06:27 -0500 | [diff] [blame] | 11 | #include "GrTextureMaker.h" |
Brian Salomon | 2bbdcc4 | 2017-09-07 12:36:34 -0400 | [diff] [blame] | 12 | #include "SkBitmap.h" |
Brian Osman | 3b66ab6 | 2016-11-28 09:26:31 -0500 | [diff] [blame] | 13 | |
| 14 | /** This class manages the conversion of SW-backed bitmaps to GrTextures. If the input bitmap is |
| 15 | non-volatile the texture is cached using a key created from the pixels' image id and the |
| 16 | subset of the pixelref specified by the bitmap. */ |
| 17 | class GrBitmapTextureMaker : public GrTextureMaker { |
| 18 | public: |
| 19 | GrBitmapTextureMaker(GrContext* context, const SkBitmap& bitmap); |
| 20 | |
| 21 | protected: |
Robert Phillips | 0c984a0 | 2017-03-16 07:51:56 -0400 | [diff] [blame] | 22 | sk_sp<GrTextureProxy> refOriginalTextureProxy(bool willBeMipped, |
Stan Iliev | ba81af2 | 2017-06-08 15:16:53 -0400 | [diff] [blame] | 23 | SkColorSpace* dstColorSpace, |
| 24 | AllowedTexGenType onlyIfFast) override; |
Robert Phillips | 0c984a0 | 2017-03-16 07:51:56 -0400 | [diff] [blame] | 25 | |
Brian Osman | 3b66ab6 | 2016-11-28 09:26:31 -0500 | [diff] [blame] | 26 | void makeCopyKey(const CopyParams& copyParams, GrUniqueKey* copyKey, |
Brian Osman | 61624f0 | 2016-12-09 14:51:59 -0500 | [diff] [blame] | 27 | SkColorSpace* dstColorSpace) override; |
Brian Osman | 3b66ab6 | 2016-11-28 09:26:31 -0500 | [diff] [blame] | 28 | |
Brian Salomon | 238069b | 2018-07-11 15:58:57 -0400 | [diff] [blame] | 29 | void didCacheCopy(const GrUniqueKey& copyKey, uint32_t contextUniqueID) override; |
Brian Osman | 3b66ab6 | 2016-11-28 09:26:31 -0500 | [diff] [blame] | 30 | |
| 31 | SkAlphaType alphaType() const override; |
Brian Osman | 61624f0 | 2016-12-09 14:51:59 -0500 | [diff] [blame] | 32 | sk_sp<SkColorSpace> getColorSpace(SkColorSpace* dstColorSpace) override; |
Brian Osman | 3b66ab6 | 2016-11-28 09:26:31 -0500 | [diff] [blame] | 33 | |
| 34 | private: |
| 35 | const SkBitmap fBitmap; |
| 36 | GrUniqueKey fOriginalKey; |
| 37 | |
| 38 | typedef GrTextureMaker INHERITED; |
| 39 | }; |
| 40 | |
| 41 | #endif |