bsalomon | 045802d | 2015-10-20 07:58:01 -0700 | [diff] [blame] | 1 | /* |
| 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 | #ifndef GrTextureMaker_DEFINED |
| 9 | #define GrTextureMaker_DEFINED |
| 10 | |
| 11 | #include "GrTextureParams.h" |
| 12 | #include "GrResourceKey.h" |
bsalomon | 89fe56b | 2015-10-29 10:49:28 -0700 | [diff] [blame] | 13 | #include "SkTLazy.h" |
bsalomon | 045802d | 2015-10-20 07:58:01 -0700 | [diff] [blame] | 14 | |
| 15 | class GrContext; |
| 16 | class GrTexture; |
| 17 | class GrTextureParams; |
| 18 | class GrUniqueKey; |
| 19 | class SkBitmap; |
| 20 | |
| 21 | /** |
| 22 | * Different GPUs and API extensions have different requirements with respect to what texture |
| 23 | * sampling parameters may be used with textures of various types. This class facilitates making |
bsalomon | 89fe56b | 2015-10-29 10:49:28 -0700 | [diff] [blame] | 24 | * texture compatible with a given GrTextureParams. There are two immediate subclasses defined |
| 25 | * below. One is a base class for sources that are inherently texture-backed (e.g. a texture-backed |
| 26 | * SkImage). It supports subsetting the original texture. The other is for use cases where the |
| 27 | * source can generate a texture that represents some content (e.g. cpu pixels, SkPicture, ...). |
bsalomon | 045802d | 2015-10-20 07:58:01 -0700 | [diff] [blame] | 28 | */ |
bsalomon | 89fe56b | 2015-10-29 10:49:28 -0700 | [diff] [blame] | 29 | class GrTextureProducer : public SkNoncopyable { |
bsalomon | 045802d | 2015-10-20 07:58:01 -0700 | [diff] [blame] | 30 | public: |
| 31 | struct CopyParams { |
| 32 | GrTextureParams::FilterMode fFilter; |
| 33 | int fWidth; |
| 34 | int fHeight; |
| 35 | }; |
| 36 | |
bsalomon | 89fe56b | 2015-10-29 10:49:28 -0700 | [diff] [blame] | 37 | virtual ~GrTextureProducer() {} |
| 38 | |
| 39 | protected: |
| 40 | /** Helper for creating a key for a copy from an original key. */ |
| 41 | static void MakeCopyKeyFromOrigKey(const GrUniqueKey& origKey, |
| 42 | const CopyParams& copyParams, |
| 43 | GrUniqueKey* copyKey) { |
| 44 | SkASSERT(!copyKey->isValid()); |
| 45 | if (origKey.isValid()) { |
| 46 | static const GrUniqueKey::Domain kDomain = GrUniqueKey::GenerateDomain(); |
| 47 | GrUniqueKey::Builder builder(copyKey, origKey, kDomain, 3); |
| 48 | builder[0] = copyParams.fFilter; |
| 49 | builder[1] = copyParams.fWidth; |
| 50 | builder[2] = copyParams.fHeight; |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * If we need to make a copy in order to be compatible with GrTextureParams producer is asked to |
| 56 | * return a key that identifies its original content + the CopyParms parameter. If the producer |
| 57 | * does not want to cache the stretched version (e.g. the producer is volatile), this should |
| 58 | * simply return without initializing the copyKey. |
| 59 | */ |
| 60 | virtual void makeCopyKey(const CopyParams&, GrUniqueKey* copyKey) = 0; |
| 61 | |
| 62 | /** |
| 63 | * If a stretched version of the texture is generated, it may be cached (assuming that |
| 64 | * makeCopyKey() returns true). In that case, the maker is notified in case it |
| 65 | * wants to note that for when the maker is destroyed. |
| 66 | */ |
| 67 | virtual void didCacheCopy(const GrUniqueKey& copyKey) = 0; |
| 68 | |
| 69 | typedef SkNoncopyable INHERITED; |
| 70 | }; |
| 71 | |
| 72 | /** Base class for sources that start out as textures */ |
| 73 | class GrTextureAdjuster : public GrTextureProducer { |
| 74 | public: |
| 75 | /** Makes the subset of the texture safe to use with the given texture parameters. |
| 76 | outOffset will be the top-left corner of the subset if a copy is not made. Otherwise, |
| 77 | the copy will be tight to the contents and outOffset will be (0, 0). If the copy's size |
| 78 | does not match subset's dimensions then the contents are scaled to fit the copy.*/ |
| 79 | GrTexture* refTextureSafeForParams(const GrTextureParams&, SkIPoint* outOffset); |
| 80 | |
| 81 | protected: |
| 82 | /** No subset, use the whole texture */ |
| 83 | explicit GrTextureAdjuster(GrTexture* original): fOriginal(original) {} |
| 84 | |
| 85 | GrTextureAdjuster(GrTexture* original, const SkIRect& subset); |
| 86 | |
| 87 | GrTexture* originalTexture() { return fOriginal; } |
| 88 | |
| 89 | /** Returns the subset or null for the whole original texture */ |
| 90 | const SkIRect* subset() { return fSubset.getMaybeNull(); } |
| 91 | |
| 92 | private: |
| 93 | GrTexture* internalRefTextureSafeForParams(GrTexture*, const SkIRect* subset, |
| 94 | const GrTextureParams&, SkIPoint* outOffset); |
| 95 | SkTLazy<SkIRect> fSubset; |
| 96 | GrTexture* fOriginal; |
| 97 | |
| 98 | typedef GrTextureProducer INHERITED; |
| 99 | }; |
| 100 | |
| 101 | /** |
| 102 | * Base class for sources that start out as something other than a texture (encoded image, |
| 103 | * picture, ...). |
| 104 | */ |
| 105 | class GrTextureMaker : public GrTextureProducer { |
| 106 | public: |
| 107 | |
| 108 | GrTextureMaker(int width, int height) : fWidth(width), fHeight(height) {} |
bsalomon | 045802d | 2015-10-20 07:58:01 -0700 | [diff] [blame] | 109 | |
| 110 | int width() const { return fWidth; } |
| 111 | int height() const { return fHeight; } |
| 112 | |
bsalomon | 89fe56b | 2015-10-29 10:49:28 -0700 | [diff] [blame] | 113 | /** Returns a texture that is safe for use with the params. If the size of the returned texture |
| 114 | does not match width()/height() then the contents of the original must be scaled to fit |
| 115 | the texture. */ |
bsalomon | 045802d | 2015-10-20 07:58:01 -0700 | [diff] [blame] | 116 | GrTexture* refTextureForParams(GrContext*, const GrTextureParams&); |
| 117 | |
| 118 | protected: |
bsalomon | 045802d | 2015-10-20 07:58:01 -0700 | [diff] [blame] | 119 | /** |
| 120 | * Return the maker's "original" texture. It is the responsibility of the maker |
| 121 | * to make this efficient ... if the texture is being generated, the maker must handle |
| 122 | * caching it (if desired). |
| 123 | */ |
| 124 | virtual GrTexture* refOriginalTexture(GrContext*) = 0; |
| 125 | |
| 126 | /** |
bsalomon | 89fe56b | 2015-10-29 10:49:28 -0700 | [diff] [blame] | 127 | * If we need to copy the producer's original texture, the producer is asked to return a key |
bsalomon | 045802d | 2015-10-20 07:58:01 -0700 | [diff] [blame] | 128 | * that identifies its original + the CopyParms parameter. If the maker does not want to cache |
bsalomon | 89fe56b | 2015-10-29 10:49:28 -0700 | [diff] [blame] | 129 | * the stretched version (e.g. the producer is volatile), this should simply return without |
bsalomon | 045802d | 2015-10-20 07:58:01 -0700 | [diff] [blame] | 130 | * initializing the copyKey. |
| 131 | */ |
| 132 | virtual void makeCopyKey(const CopyParams&, GrUniqueKey* copyKey) = 0; |
| 133 | |
| 134 | /** |
| 135 | * Return a new (uncached) texture that is the stretch of the maker's original. |
| 136 | * |
| 137 | * The base-class handles general logic for this, and only needs access to the following |
bsalomon | 100b8f8 | 2015-10-28 08:37:44 -0700 | [diff] [blame] | 138 | * method: |
| 139 | * - refOriginalTexture() |
bsalomon | 045802d | 2015-10-20 07:58:01 -0700 | [diff] [blame] | 140 | * |
| 141 | * Subclass may override this if they can handle creating the texture more directly than |
| 142 | * by copying. |
| 143 | */ |
| 144 | virtual GrTexture* generateTextureForParams(GrContext*, const CopyParams&); |
| 145 | |
bsalomon | 045802d | 2015-10-20 07:58:01 -0700 | [diff] [blame] | 146 | private: |
| 147 | const int fWidth; |
| 148 | const int fHeight; |
bsalomon | 89fe56b | 2015-10-29 10:49:28 -0700 | [diff] [blame] | 149 | |
| 150 | typedef GrTextureProducer INHERITED; |
bsalomon | 045802d | 2015-10-20 07:58:01 -0700 | [diff] [blame] | 151 | }; |
| 152 | |
| 153 | #endif |