blob: eee761fbbe56371350abbe77ce803370a906f09e [file] [log] [blame]
bsalomon045802d2015-10-20 07:58:01 -07001/*
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"
bsalomonc55271f2015-11-09 11:55:57 -080013#include "GrTexture.h"
bsalomon89fe56b2015-10-29 10:49:28 -070014#include "SkTLazy.h"
bsalomon045802d2015-10-20 07:58:01 -070015
16class GrContext;
bsalomon045802d2015-10-20 07:58:01 -070017class GrTextureParams;
18class GrUniqueKey;
19class 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
bsalomon89fe56b2015-10-29 10:49:28 -070024 * 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, ...).
bsalomon045802d2015-10-20 07:58:01 -070028 */
bsalomon89fe56b2015-10-29 10:49:28 -070029class GrTextureProducer : public SkNoncopyable {
bsalomon045802d2015-10-20 07:58:01 -070030public:
31 struct CopyParams {
32 GrTextureParams::FilterMode fFilter;
33 int fWidth;
34 int fHeight;
35 };
36
bsalomonb1b01992015-11-18 10:56:08 -080037 enum FilterConstraint {
38 kYes_FilterConstraint,
39 kNo_FilterConstraint,
40 };
41
42 /**
43 * Helper for creating a fragment processor to sample the texture with a given filtering mode.
44 * It attempts to avoid making texture copies or using domains whenever possible.
45 *
46 * @param textureMatrix Matrix used to access the texture. It is applied to
47 * the local coords. The post-transformed coords should
48 * be in texel units (rather than normalized) with
49 * respect to this Producer's bounds (width()/height()).
50 * @param constraintRect A rect that represents the area of the texture to be
51 * sampled. It must be contained in the Producer's bounds
52 * as defined by width()/height().
53 * @param filterConstriant Indicates whether filtering is limited to
54 * constraintRect.
55 * @param coordsLimitedToConstraintRect Is it known that textureMatrix*localCoords is bound
56 * by the portion of the texture indicated by
57 * constraintRect (without consideration of filter
58 * width, just the raw coords).
59 * @param filterOrNullForBicubic If non-null indicates the filter mode. If null means
60 * use bicubic filtering.
61 **/
bungeman06ca8ec2016-06-09 08:01:03 -070062 virtual sk_sp<GrFragmentProcessor> createFragmentProcessor(
bsalomonb1b01992015-11-18 10:56:08 -080063 const SkMatrix& textureMatrix,
64 const SkRect& constraintRect,
65 FilterConstraint filterConstraint,
66 bool coordsLimitedToConstraintRect,
brianosman982eb7f2016-06-06 13:10:58 -070067 const GrTextureParams::FilterMode* filterOrNullForBicubic,
68 SkSourceGammaTreatment) = 0;
bsalomonb1b01992015-11-18 10:56:08 -080069
bsalomon89fe56b2015-10-29 10:49:28 -070070 virtual ~GrTextureProducer() {}
71
bsalomon3aa5fce2015-11-12 09:59:44 -080072 int width() const { return fWidth; }
73 int height() const { return fHeight; }
bsalomonf1ecd212015-12-09 17:06:02 -080074 bool isAlphaOnly() const { return fIsAlphaOnly; }
brianosmandddbe382016-07-20 13:55:39 -070075 virtual SkColorSpace* getColorSpace() = 0;
bsalomon3aa5fce2015-11-12 09:59:44 -080076
bsalomon89fe56b2015-10-29 10:49:28 -070077protected:
bsalomonf1ecd212015-12-09 17:06:02 -080078 GrTextureProducer(int width, int height, bool isAlphaOnly)
79 : fWidth(width)
80 , fHeight(height)
81 , fIsAlphaOnly(isAlphaOnly) {}
bsalomon3aa5fce2015-11-12 09:59:44 -080082
bsalomon89fe56b2015-10-29 10:49:28 -070083 /** Helper for creating a key for a copy from an original key. */
84 static void MakeCopyKeyFromOrigKey(const GrUniqueKey& origKey,
85 const CopyParams& copyParams,
86 GrUniqueKey* copyKey) {
87 SkASSERT(!copyKey->isValid());
88 if (origKey.isValid()) {
89 static const GrUniqueKey::Domain kDomain = GrUniqueKey::GenerateDomain();
90 GrUniqueKey::Builder builder(copyKey, origKey, kDomain, 3);
91 builder[0] = copyParams.fFilter;
92 builder[1] = copyParams.fWidth;
93 builder[2] = copyParams.fHeight;
94 }
95 }
96
97 /**
98 * If we need to make a copy in order to be compatible with GrTextureParams producer is asked to
99 * return a key that identifies its original content + the CopyParms parameter. If the producer
100 * does not want to cache the stretched version (e.g. the producer is volatile), this should
101 * simply return without initializing the copyKey.
102 */
103 virtual void makeCopyKey(const CopyParams&, GrUniqueKey* copyKey) = 0;
104
105 /**
106 * If a stretched version of the texture is generated, it may be cached (assuming that
107 * makeCopyKey() returns true). In that case, the maker is notified in case it
108 * wants to note that for when the maker is destroyed.
109 */
110 virtual void didCacheCopy(const GrUniqueKey& copyKey) = 0;
111
bsalomon3aa5fce2015-11-12 09:59:44 -0800112private:
bsalomonf1ecd212015-12-09 17:06:02 -0800113 const int fWidth;
114 const int fHeight;
115 const bool fIsAlphaOnly;
bsalomon3aa5fce2015-11-12 09:59:44 -0800116
bsalomon89fe56b2015-10-29 10:49:28 -0700117 typedef SkNoncopyable INHERITED;
118};
119
bsalomonc75be342015-10-29 12:34:31 -0700120/**
121 * Base class for sources that start out as textures. Optionally allows for a content area subrect.
122 * The intent is not to use content area for subrect rendering. Rather, the pixels outside the
123 * content area have undefined values and shouldn't be read *regardless* of filtering mode or
124 * the SkCanvas::SrcRectConstraint used for subrect draws.
125 */
bsalomon89fe56b2015-10-29 10:49:28 -0700126class GrTextureAdjuster : public GrTextureProducer {
127public:
128 /** Makes the subset of the texture safe to use with the given texture parameters.
129 outOffset will be the top-left corner of the subset if a copy is not made. Otherwise,
130 the copy will be tight to the contents and outOffset will be (0, 0). If the copy's size
131 does not match subset's dimensions then the contents are scaled to fit the copy.*/
brianosman982eb7f2016-06-06 13:10:58 -0700132 GrTexture* refTextureSafeForParams(const GrTextureParams&, SkSourceGammaTreatment,
133 SkIPoint* outOffset);
bsalomon89fe56b2015-10-29 10:49:28 -0700134
bungeman06ca8ec2016-06-09 08:01:03 -0700135 sk_sp<GrFragmentProcessor> createFragmentProcessor(
bsalomonb1b01992015-11-18 10:56:08 -0800136 const SkMatrix& textureMatrix,
137 const SkRect& constraintRect,
138 FilterConstraint,
139 bool coordsLimitedToConstraintRect,
brianosman982eb7f2016-06-06 13:10:58 -0700140 const GrTextureParams::FilterMode* filterOrNullForBicubic,
141 SkSourceGammaTreatment) override;
bsalomonc55271f2015-11-09 11:55:57 -0800142
bsalomon89fe56b2015-10-29 10:49:28 -0700143protected:
bsalomonc75be342015-10-29 12:34:31 -0700144 /** The whole texture is content. */
bsalomonf1ecd212015-12-09 17:06:02 -0800145 explicit GrTextureAdjuster(GrTexture* original, bool isAlphaOnly)
146 : INHERITED(original->width(), original->height(), isAlphaOnly)
bsalomon3aa5fce2015-11-12 09:59:44 -0800147 , fOriginal(original) {}
bsalomon89fe56b2015-10-29 10:49:28 -0700148
bsalomonf1ecd212015-12-09 17:06:02 -0800149 GrTextureAdjuster(GrTexture* original, const SkIRect& contentArea, bool isAlphaOnly);
bsalomon89fe56b2015-10-29 10:49:28 -0700150
bsalomon3aa5fce2015-11-12 09:59:44 -0800151 GrTexture* originalTexture() const { return fOriginal; }
152
bsalomonc75be342015-10-29 12:34:31 -0700153 /** Returns the content area or null for the whole original texture */
bsalomonc55271f2015-11-09 11:55:57 -0800154 const SkIRect* contentAreaOrNull() { return fContentArea.getMaybeNull(); }
bsalomon89fe56b2015-10-29 10:49:28 -0700155
156private:
bsalomonc75be342015-10-29 12:34:31 -0700157 SkTLazy<SkIRect> fContentArea;
bsalomon89fe56b2015-10-29 10:49:28 -0700158 GrTexture* fOriginal;
159
bsalomone179a912016-01-20 06:18:10 -0800160 GrTexture* refCopy(const CopyParams &copyParams);
161
bsalomon89fe56b2015-10-29 10:49:28 -0700162 typedef GrTextureProducer INHERITED;
163};
164
mtklein64593522015-11-12 10:41:05 -0800165/**
bsalomon89fe56b2015-10-29 10:49:28 -0700166 * Base class for sources that start out as something other than a texture (encoded image,
167 * picture, ...).
168 */
169class GrTextureMaker : public GrTextureProducer {
170public:
bsalomon89fe56b2015-10-29 10:49:28 -0700171 /** Returns a texture that is safe for use with the params. If the size of the returned texture
172 does not match width()/height() then the contents of the original must be scaled to fit
173 the texture. */
brianosman982eb7f2016-06-06 13:10:58 -0700174 GrTexture* refTextureForParams(const GrTextureParams&, SkSourceGammaTreatment);
bsalomonb1b01992015-11-18 10:56:08 -0800175
bungeman06ca8ec2016-06-09 08:01:03 -0700176 sk_sp<GrFragmentProcessor> createFragmentProcessor(
bsalomonb1b01992015-11-18 10:56:08 -0800177 const SkMatrix& textureMatrix,
178 const SkRect& constraintRect,
179 FilterConstraint filterConstraint,
180 bool coordsLimitedToConstraintRect,
brianosman982eb7f2016-06-06 13:10:58 -0700181 const GrTextureParams::FilterMode* filterOrNullForBicubic,
182 SkSourceGammaTreatment) override;
bsalomon045802d2015-10-20 07:58:01 -0700183
184protected:
bsalomonf1ecd212015-12-09 17:06:02 -0800185 GrTextureMaker(GrContext* context, int width, int height, bool isAlphaOnly)
186 : INHERITED(width, height, isAlphaOnly)
bsalomonb1b01992015-11-18 10:56:08 -0800187 , fContext(context) {}
bsalomon3aa5fce2015-11-12 09:59:44 -0800188
bsalomon045802d2015-10-20 07:58:01 -0700189 /**
bsalomonb1b01992015-11-18 10:56:08 -0800190 * Return the maker's "original" texture. It is the responsibility of the maker to handle any
191 * caching of the original if desired.
bsalomon045802d2015-10-20 07:58:01 -0700192 */
brianosman982eb7f2016-06-06 13:10:58 -0700193 virtual GrTexture* refOriginalTexture(bool willBeMipped, SkSourceGammaTreatment) = 0;
bsalomon045802d2015-10-20 07:58:01 -0700194
195 /**
196 * Return a new (uncached) texture that is the stretch of the maker's original.
197 *
198 * The base-class handles general logic for this, and only needs access to the following
bsalomon100b8f82015-10-28 08:37:44 -0700199 * method:
200 * - refOriginalTexture()
bsalomon045802d2015-10-20 07:58:01 -0700201 *
202 * Subclass may override this if they can handle creating the texture more directly than
203 * by copying.
204 */
brianosman982eb7f2016-06-06 13:10:58 -0700205 virtual GrTexture* generateTextureForParams(const CopyParams&, bool willBeMipped,
206 SkSourceGammaTreatment);
bsalomonb1b01992015-11-18 10:56:08 -0800207
208 GrContext* context() const { return fContext; }
bsalomon045802d2015-10-20 07:58:01 -0700209
bsalomon045802d2015-10-20 07:58:01 -0700210private:
bsalomonb1b01992015-11-18 10:56:08 -0800211 GrContext* fContext;
212
bsalomon89fe56b2015-10-29 10:49:28 -0700213 typedef GrTextureProducer INHERITED;
bsalomon045802d2015-10-20 07:58:01 -0700214};
215
216#endif