blob: ed9f142af0f6d4e7ce36626906042df0fb7fc42f [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 **/
62 virtual const GrFragmentProcessor* createFragmentProcessor(
63 const SkMatrix& textureMatrix,
64 const SkRect& constraintRect,
65 FilterConstraint filterConstraint,
66 bool coordsLimitedToConstraintRect,
67 const GrTextureParams::FilterMode* filterOrNullForBicubic) = 0;
68
bsalomon89fe56b2015-10-29 10:49:28 -070069 virtual ~GrTextureProducer() {}
70
bsalomon3aa5fce2015-11-12 09:59:44 -080071 int width() const { return fWidth; }
72 int height() const { return fHeight; }
73
bsalomon89fe56b2015-10-29 10:49:28 -070074protected:
bsalomon3aa5fce2015-11-12 09:59:44 -080075 GrTextureProducer(int width, int height) : fWidth(width), fHeight(height) {}
76
bsalomon89fe56b2015-10-29 10:49:28 -070077 /** Helper for creating a key for a copy from an original key. */
78 static void MakeCopyKeyFromOrigKey(const GrUniqueKey& origKey,
79 const CopyParams& copyParams,
80 GrUniqueKey* copyKey) {
81 SkASSERT(!copyKey->isValid());
82 if (origKey.isValid()) {
83 static const GrUniqueKey::Domain kDomain = GrUniqueKey::GenerateDomain();
84 GrUniqueKey::Builder builder(copyKey, origKey, kDomain, 3);
85 builder[0] = copyParams.fFilter;
86 builder[1] = copyParams.fWidth;
87 builder[2] = copyParams.fHeight;
88 }
89 }
90
91 /**
92 * If we need to make a copy in order to be compatible with GrTextureParams producer is asked to
93 * return a key that identifies its original content + the CopyParms parameter. If the producer
94 * does not want to cache the stretched version (e.g. the producer is volatile), this should
95 * simply return without initializing the copyKey.
96 */
97 virtual void makeCopyKey(const CopyParams&, GrUniqueKey* copyKey) = 0;
98
99 /**
100 * If a stretched version of the texture is generated, it may be cached (assuming that
101 * makeCopyKey() returns true). In that case, the maker is notified in case it
102 * wants to note that for when the maker is destroyed.
103 */
104 virtual void didCacheCopy(const GrUniqueKey& copyKey) = 0;
105
bsalomon3aa5fce2015-11-12 09:59:44 -0800106private:
107 const int fWidth;
108 const int fHeight;
109
bsalomon89fe56b2015-10-29 10:49:28 -0700110 typedef SkNoncopyable INHERITED;
111};
112
bsalomonc75be342015-10-29 12:34:31 -0700113/**
114 * Base class for sources that start out as textures. Optionally allows for a content area subrect.
115 * The intent is not to use content area for subrect rendering. Rather, the pixels outside the
116 * content area have undefined values and shouldn't be read *regardless* of filtering mode or
117 * the SkCanvas::SrcRectConstraint used for subrect draws.
118 */
bsalomon89fe56b2015-10-29 10:49:28 -0700119class GrTextureAdjuster : public GrTextureProducer {
120public:
121 /** Makes the subset of the texture safe to use with the given texture parameters.
122 outOffset will be the top-left corner of the subset if a copy is not made. Otherwise,
123 the copy will be tight to the contents and outOffset will be (0, 0). If the copy's size
124 does not match subset's dimensions then the contents are scaled to fit the copy.*/
125 GrTexture* refTextureSafeForParams(const GrTextureParams&, SkIPoint* outOffset);
126
bsalomonc55271f2015-11-09 11:55:57 -0800127 const GrFragmentProcessor* createFragmentProcessor(
bsalomonb1b01992015-11-18 10:56:08 -0800128 const SkMatrix& textureMatrix,
129 const SkRect& constraintRect,
130 FilterConstraint,
131 bool coordsLimitedToConstraintRect,
132 const GrTextureParams::FilterMode* filterOrNullForBicubic) override;
bsalomonc55271f2015-11-09 11:55:57 -0800133
bsalomon89fe56b2015-10-29 10:49:28 -0700134protected:
bsalomonc75be342015-10-29 12:34:31 -0700135 /** The whole texture is content. */
bsalomon3aa5fce2015-11-12 09:59:44 -0800136 explicit GrTextureAdjuster(GrTexture* original)
137 : INHERITED(original->width(), original->height())
138 , fOriginal(original) {}
bsalomon89fe56b2015-10-29 10:49:28 -0700139
bsalomonc75be342015-10-29 12:34:31 -0700140 GrTextureAdjuster(GrTexture* original, const SkIRect& contentArea);
bsalomon89fe56b2015-10-29 10:49:28 -0700141
bsalomon3aa5fce2015-11-12 09:59:44 -0800142 GrTexture* originalTexture() const { return fOriginal; }
143
bsalomonc75be342015-10-29 12:34:31 -0700144 /** Returns the content area or null for the whole original texture */
bsalomonc55271f2015-11-09 11:55:57 -0800145 const SkIRect* contentAreaOrNull() { return fContentArea.getMaybeNull(); }
bsalomon89fe56b2015-10-29 10:49:28 -0700146
147private:
bsalomonc75be342015-10-29 12:34:31 -0700148 SkTLazy<SkIRect> fContentArea;
bsalomon89fe56b2015-10-29 10:49:28 -0700149 GrTexture* fOriginal;
150
151 typedef GrTextureProducer INHERITED;
152};
153
mtklein64593522015-11-12 10:41:05 -0800154/**
bsalomon89fe56b2015-10-29 10:49:28 -0700155 * Base class for sources that start out as something other than a texture (encoded image,
156 * picture, ...).
157 */
158class GrTextureMaker : public GrTextureProducer {
159public:
bsalomon89fe56b2015-10-29 10:49:28 -0700160 /** Returns a texture that is safe for use with the params. If the size of the returned texture
161 does not match width()/height() then the contents of the original must be scaled to fit
162 the texture. */
bsalomonb1b01992015-11-18 10:56:08 -0800163 GrTexture* refTextureForParams(const GrTextureParams&);
164
165 const GrFragmentProcessor* createFragmentProcessor(
166 const SkMatrix& textureMatrix,
167 const SkRect& constraintRect,
168 FilterConstraint filterConstraint,
169 bool coordsLimitedToConstraintRect,
170 const GrTextureParams::FilterMode* filterOrNullForBicubic) override;
bsalomon045802d2015-10-20 07:58:01 -0700171
172protected:
bsalomonb1b01992015-11-18 10:56:08 -0800173 GrTextureMaker(GrContext* context, int width, int height)
174 : INHERITED(width, height)
175 , fContext(context) {}
bsalomon3aa5fce2015-11-12 09:59:44 -0800176
bsalomon045802d2015-10-20 07:58:01 -0700177 /**
bsalomonb1b01992015-11-18 10:56:08 -0800178 * Return the maker's "original" texture. It is the responsibility of the maker to handle any
179 * caching of the original if desired.
bsalomon045802d2015-10-20 07:58:01 -0700180 */
bsalomonb1b01992015-11-18 10:56:08 -0800181 virtual GrTexture* refOriginalTexture() = 0;
bsalomon045802d2015-10-20 07:58:01 -0700182
183 /**
184 * Return a new (uncached) texture that is the stretch of the maker's original.
185 *
186 * The base-class handles general logic for this, and only needs access to the following
bsalomon100b8f82015-10-28 08:37:44 -0700187 * method:
188 * - refOriginalTexture()
bsalomon045802d2015-10-20 07:58:01 -0700189 *
190 * Subclass may override this if they can handle creating the texture more directly than
191 * by copying.
192 */
bsalomonb1b01992015-11-18 10:56:08 -0800193 virtual GrTexture* generateTextureForParams(const CopyParams&);
194
195 GrContext* context() const { return fContext; }
bsalomon045802d2015-10-20 07:58:01 -0700196
bsalomon045802d2015-10-20 07:58:01 -0700197private:
bsalomonb1b01992015-11-18 10:56:08 -0800198 GrContext* fContext;
199
bsalomon89fe56b2015-10-29 10:49:28 -0700200 typedef GrTextureProducer INHERITED;
bsalomon045802d2015-10-20 07:58:01 -0700201};
202
203#endif