reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 1 | /* |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 2 | * Copyright 2006 The Android Open Source Project |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 3 | * |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef SkShader_DEFINED |
| 9 | #define SkShader_DEFINED |
| 10 | |
| 11 | #include "SkBitmap.h" |
| 12 | #include "SkFlattenable.h" |
fmalita | d0c4e09 | 2016-02-22 17:19:04 -0800 | [diff] [blame] | 13 | #include "SkImageInfo.h" |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 14 | #include "SkMask.h" |
| 15 | #include "SkMatrix.h" |
| 16 | #include "SkPaint.h" |
bsalomon | 4beef91 | 2014-07-28 13:43:02 -0700 | [diff] [blame] | 17 | #include "../gpu/GrColor.h" |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 18 | |
reed | 3061af4 | 2016-01-07 15:47:29 -0800 | [diff] [blame] | 19 | class SkColorFilter; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 20 | class SkPath; |
commit-bot@chromium.org | c5d9bb0 | 2014-04-08 15:19:34 +0000 | [diff] [blame] | 21 | class SkPicture; |
commit-bot@chromium.org | 7959055 | 2014-05-13 18:14:45 +0000 | [diff] [blame] | 22 | class SkXfermode; |
rileya@google.com | 03c1c35 | 2012-07-20 20:02:43 +0000 | [diff] [blame] | 23 | class GrContext; |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 24 | class GrFragmentProcessor; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 25 | |
| 26 | /** \class SkShader |
reed@google.com | ad91799 | 2011-04-11 19:01:12 +0000 | [diff] [blame] | 27 | * |
reed@google.com | 880dc47 | 2012-05-11 14:47:03 +0000 | [diff] [blame] | 28 | * Shaders specify the source color(s) for what is being drawn. If a paint |
| 29 | * has no shader, then the paint's color is used. If the paint has a |
| 30 | * shader, then the shader's color(s) are use instead, but they are |
| 31 | * modulated by the paint's alpha. This makes it easy to create a shader |
| 32 | * once (e.g. bitmap tiling or gradient) and then change its transparency |
| 33 | * w/o having to modify the original shader... only the paint's alpha needs |
| 34 | * to be modified. |
reed@google.com | ad91799 | 2011-04-11 19:01:12 +0000 | [diff] [blame] | 35 | */ |
ctguil@chromium.org | 7ffb1b2 | 2011-03-15 21:27:08 +0000 | [diff] [blame] | 36 | class SK_API SkShader : public SkFlattenable { |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 37 | public: |
commit-bot@chromium.org | 9c9005a | 2014-04-28 14:55:39 +0000 | [diff] [blame] | 38 | SkShader(const SkMatrix* localMatrix = NULL); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 39 | virtual ~SkShader(); |
| 40 | |
reed@google.com | ad91799 | 2011-04-11 19:01:12 +0000 | [diff] [blame] | 41 | /** |
commit-bot@chromium.org | d12de02 | 2014-05-09 15:42:07 +0000 | [diff] [blame] | 42 | * Returns the local matrix. |
scroggo | c870d49 | 2014-07-11 10:42:12 -0700 | [diff] [blame] | 43 | * |
| 44 | * FIXME: This can be incorrect for a Shader with its own local matrix |
| 45 | * that is also wrapped via CreateLocalMatrixShader. |
commit-bot@chromium.org | d12de02 | 2014-05-09 15:42:07 +0000 | [diff] [blame] | 46 | */ |
| 47 | const SkMatrix& getLocalMatrix() const { return fLocalMatrix; } |
| 48 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 49 | enum TileMode { |
reed@google.com | 0beaba5 | 2012-03-16 14:38:06 +0000 | [diff] [blame] | 50 | /** replicate the edge color if the shader draws outside of its |
| 51 | * original bounds |
| 52 | */ |
| 53 | kClamp_TileMode, |
| 54 | |
| 55 | /** repeat the shader's image horizontally and vertically */ |
| 56 | kRepeat_TileMode, |
| 57 | |
| 58 | /** repeat the shader's image horizontally and vertically, alternating |
| 59 | * mirror images so that adjacent images always seam |
| 60 | */ |
| 61 | kMirror_TileMode, |
| 62 | |
| 63 | #if 0 |
| 64 | /** only draw within the original domain, return 0 everywhere else */ |
| 65 | kDecal_TileMode, |
| 66 | #endif |
reed | 19c25f1 | 2015-03-15 14:01:21 -0700 | [diff] [blame] | 67 | }; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 68 | |
reed | 19c25f1 | 2015-03-15 14:01:21 -0700 | [diff] [blame] | 69 | enum { |
| 70 | kTileModeCount = kMirror_TileMode + 1 |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 71 | }; |
| 72 | |
| 73 | // override these in your subclass |
| 74 | |
| 75 | enum Flags { |
| 76 | //!< set if all of the colors will be opaque |
reed | 4e5a758 | 2016-01-05 05:10:33 -0800 | [diff] [blame] | 77 | kOpaqueAlpha_Flag = 1 << 0, |
reed@android.com | 5119bdb | 2009-06-12 21:27:03 +0000 | [diff] [blame] | 78 | |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 79 | /** set if the spans only vary in X (const in Y). |
reed@android.com | 5119bdb | 2009-06-12 21:27:03 +0000 | [diff] [blame] | 80 | e.g. an Nx1 bitmap that is being tiled in Y, or a linear-gradient |
reed@android.com | 3c9b2a4 | 2009-08-27 19:28:37 +0000 | [diff] [blame] | 81 | that varies from left-to-right. This flag specifies this for |
| 82 | shadeSpan(). |
reed@android.com | 5119bdb | 2009-06-12 21:27:03 +0000 | [diff] [blame] | 83 | */ |
reed | 4e5a758 | 2016-01-05 05:10:33 -0800 | [diff] [blame] | 84 | kConstInY32_Flag = 1 << 1, |
fmalita | ca058f5 | 2016-02-23 19:02:20 -0800 | [diff] [blame] | 85 | |
| 86 | /** hint for the blitter that 4f is the preferred shading mode. |
| 87 | */ |
| 88 | kPrefers4f_Flag = 1 << 2, |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 89 | }; |
| 90 | |
reed@google.com | ad91799 | 2011-04-11 19:01:12 +0000 | [diff] [blame] | 91 | /** |
junov@chromium.org | b6e1619 | 2011-12-09 15:48:03 +0000 | [diff] [blame] | 92 | * Returns true if the shader is guaranteed to produce only opaque |
| 93 | * colors, subject to the SkPaint using the shader to apply an opaque |
| 94 | * alpha value. Subclasses should override this to allow some |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 95 | * optimizations. |
junov@chromium.org | b6e1619 | 2011-12-09 15:48:03 +0000 | [diff] [blame] | 96 | */ |
| 97 | virtual bool isOpaque() const { return false; } |
| 98 | |
commit-bot@chromium.org | e901b6d | 2014-05-01 19:31:31 +0000 | [diff] [blame] | 99 | /** |
| 100 | * ContextRec acts as a parameter bundle for creating Contexts. |
| 101 | */ |
| 102 | struct ContextRec { |
fmalita | d0c4e09 | 2016-02-22 17:19:04 -0800 | [diff] [blame] | 103 | enum DstType { |
| 104 | kPMColor_DstType, // clients prefer shading into PMColor dest |
| 105 | kPM4f_DstType, // clients prefer shading into PM4f dest |
| 106 | }; |
| 107 | |
| 108 | ContextRec(const SkPaint& paint, const SkMatrix& matrix, const SkMatrix* localM, |
| 109 | DstType dstType) |
reed | 56263c7 | 2015-06-05 11:31:26 -0700 | [diff] [blame] | 110 | : fPaint(&paint) |
commit-bot@chromium.org | 80116dc | 2014-05-06 17:16:03 +0000 | [diff] [blame] | 111 | , fMatrix(&matrix) |
fmalita | d0c4e09 | 2016-02-22 17:19:04 -0800 | [diff] [blame] | 112 | , fLocalMatrix(localM) |
| 113 | , fPreferredDstType(dstType) {} |
commit-bot@chromium.org | e901b6d | 2014-05-01 19:31:31 +0000 | [diff] [blame] | 114 | |
fmalita | d0c4e09 | 2016-02-22 17:19:04 -0800 | [diff] [blame] | 115 | const SkPaint* fPaint; // the current paint associated with the draw |
| 116 | const SkMatrix* fMatrix; // the current matrix in the canvas |
| 117 | const SkMatrix* fLocalMatrix; // optional local matrix |
| 118 | const DstType fPreferredDstType; // the "natural" client dest type |
commit-bot@chromium.org | e901b6d | 2014-05-01 19:31:31 +0000 | [diff] [blame] | 119 | }; |
| 120 | |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 121 | class Context : public ::SkNoncopyable { |
| 122 | public: |
commit-bot@chromium.org | e901b6d | 2014-05-01 19:31:31 +0000 | [diff] [blame] | 123 | Context(const SkShader& shader, const ContextRec&); |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 124 | |
| 125 | virtual ~Context(); |
| 126 | |
| 127 | /** |
| 128 | * Called sometimes before drawing with this shader. Return the type of |
| 129 | * alpha your shader will return. The default implementation returns 0. |
| 130 | * Your subclass should override if it can (even sometimes) report a |
| 131 | * non-zero value, since that will enable various blitters to perform |
| 132 | * faster. |
| 133 | */ |
| 134 | virtual uint32_t getFlags() const { return 0; } |
| 135 | |
| 136 | /** |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 137 | * Called for each span of the object being drawn. Your subclass should |
| 138 | * set the appropriate colors (with premultiplied alpha) that correspond |
| 139 | * to the specified device coordinates. |
| 140 | */ |
| 141 | virtual void shadeSpan(int x, int y, SkPMColor[], int count) = 0; |
| 142 | |
reed | 6d3cef9 | 2016-01-22 01:04:29 -0800 | [diff] [blame] | 143 | virtual void shadeSpan4f(int x, int y, SkPM4f[], int count); |
| 144 | |
herb | c7a784c | 2015-12-18 09:52:15 -0800 | [diff] [blame] | 145 | /** |
| 146 | * The const void* ctx is only const because all the implementations are const. |
| 147 | * This can be changed to non-const if a new shade proc needs to change the ctx. |
| 148 | */ |
| 149 | typedef void (*ShadeProc)(const void* ctx, int x, int y, SkPMColor[], int count); |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 150 | virtual ShadeProc asAShadeProc(void** ctx); |
| 151 | |
| 152 | /** |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 153 | * Similar to shadeSpan, but only returns the alpha-channel for a span. |
| 154 | * The default implementation calls shadeSpan() and then extracts the alpha |
| 155 | * values from the returned colors. |
| 156 | */ |
| 157 | virtual void shadeSpanAlpha(int x, int y, uint8_t alpha[], int count); |
| 158 | |
reed | cc0e311 | 2014-09-10 10:20:24 -0700 | [diff] [blame] | 159 | // Notification from blitter::blitMask in case we need to see the non-alpha channels |
| 160 | virtual void set3DMask(const SkMask*) {} |
| 161 | |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 162 | protected: |
| 163 | // Reference to shader, so we don't have to dupe information. |
| 164 | const SkShader& fShader; |
| 165 | |
| 166 | enum MatrixClass { |
| 167 | kLinear_MatrixClass, // no perspective |
| 168 | kFixedStepInX_MatrixClass, // fast perspective, need to call fixedStepInX() each |
| 169 | // scanline |
| 170 | kPerspective_MatrixClass // slow perspective, need to mappoints each pixel |
| 171 | }; |
| 172 | static MatrixClass ComputeMatrixClass(const SkMatrix&); |
| 173 | |
commit-bot@chromium.org | 80116dc | 2014-05-06 17:16:03 +0000 | [diff] [blame] | 174 | uint8_t getPaintAlpha() const { return fPaintAlpha; } |
| 175 | const SkMatrix& getTotalInverse() const { return fTotalInverse; } |
| 176 | MatrixClass getInverseClass() const { return (MatrixClass)fTotalInverseClass; } |
| 177 | const SkMatrix& getCTM() const { return fCTM; } |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 178 | private: |
commit-bot@chromium.org | 80116dc | 2014-05-06 17:16:03 +0000 | [diff] [blame] | 179 | SkMatrix fCTM; |
| 180 | SkMatrix fTotalInverse; |
| 181 | uint8_t fPaintAlpha; |
| 182 | uint8_t fTotalInverseClass; |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 183 | |
| 184 | typedef SkNoncopyable INHERITED; |
| 185 | }; |
reed@google.com | 7c2f27d | 2011-03-07 19:29:00 +0000 | [diff] [blame] | 186 | |
reed@google.com | ad91799 | 2011-04-11 19:01:12 +0000 | [diff] [blame] | 187 | /** |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 188 | * Create the actual object that does the shading. |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 189 | * Size of storage must be >= contextSize. |
reed@google.com | a641f3f | 2012-12-13 22:16:30 +0000 | [diff] [blame] | 190 | */ |
commit-bot@chromium.org | ce56d96 | 2014-05-05 18:39:18 +0000 | [diff] [blame] | 191 | Context* createContext(const ContextRec&, void* storage) const; |
reed@google.com | a641f3f | 2012-12-13 22:16:30 +0000 | [diff] [blame] | 192 | |
| 193 | /** |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 194 | * Return the size of a Context returned by createContext. |
reed@google.com | ad91799 | 2011-04-11 19:01:12 +0000 | [diff] [blame] | 195 | */ |
reed | 773ceda | 2016-03-03 18:18:25 -0800 | [diff] [blame^] | 196 | size_t contextSize(const ContextRec&) const; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 197 | |
reed@google.com | ad91799 | 2011-04-11 19:01:12 +0000 | [diff] [blame] | 198 | /** |
reed | 0f0af23 | 2015-09-08 11:02:04 -0700 | [diff] [blame] | 199 | * Returns true if this shader is just a bitmap, and if not null, returns the bitmap, |
| 200 | * localMatrix, and tilemodes. If this is not a bitmap, returns false and ignores the |
| 201 | * out-parameters. |
reed@android.com | f2b98d6 | 2010-12-20 18:26:13 +0000 | [diff] [blame] | 202 | */ |
reed | 0f0af23 | 2015-09-08 11:02:04 -0700 | [diff] [blame] | 203 | bool isABitmap(SkBitmap* outTexture, SkMatrix* outMatrix, TileMode xy[2]) const { |
| 204 | return this->onIsABitmap(outTexture, outMatrix, xy); |
scroggo | ff390c9 | 2015-09-08 06:24:08 -0700 | [diff] [blame] | 205 | } |
reed | 0f0af23 | 2015-09-08 11:02:04 -0700 | [diff] [blame] | 206 | |
reed | f582282 | 2015-08-19 11:46:38 -0700 | [diff] [blame] | 207 | bool isABitmap() const { |
| 208 | return this->isABitmap(nullptr, nullptr, nullptr); |
| 209 | } |
| 210 | |
vandebo@chromium.org | d3ae779 | 2011-02-24 00:21:06 +0000 | [diff] [blame] | 211 | /** |
| 212 | * If the shader subclass can be represented as a gradient, asAGradient |
| 213 | * returns the matching GradientType enum (or kNone_GradientType if it |
| 214 | * cannot). Also, if info is not null, asAGradient populates info with |
| 215 | * the relevant (see below) parameters for the gradient. fColorCount |
| 216 | * is both an input and output parameter. On input, it indicates how |
| 217 | * many entries in fColors and fColorOffsets can be used, if they are |
| 218 | * non-NULL. After asAGradient has run, fColorCount indicates how |
| 219 | * many color-offset pairs there are in the gradient. If there is |
| 220 | * insufficient space to store all of the color-offset pairs, fColors |
| 221 | * and fColorOffsets will not be altered. fColorOffsets specifies |
| 222 | * where on the range of 0 to 1 to transition to the given color. |
| 223 | * The meaning of fPoint and fRadius is dependant on the type of gradient. |
| 224 | * |
| 225 | * None: |
| 226 | * info is ignored. |
| 227 | * Color: |
| 228 | * fColorOffsets[0] is meaningless. |
| 229 | * Linear: |
| 230 | * fPoint[0] and fPoint[1] are the end-points of the gradient |
| 231 | * Radial: |
| 232 | * fPoint[0] and fRadius[0] are the center and radius |
reed | 71a6cbf | 2015-05-04 08:32:51 -0700 | [diff] [blame] | 233 | * Conical: |
vandebo@chromium.org | d3ae779 | 2011-02-24 00:21:06 +0000 | [diff] [blame] | 234 | * fPoint[0] and fRadius[0] are the center and radius of the 1st circle |
| 235 | * fPoint[1] and fRadius[1] are the center and radius of the 2nd circle |
| 236 | * Sweep: |
| 237 | * fPoint[0] is the center of the sweep. |
| 238 | */ |
| 239 | |
| 240 | enum GradientType { |
| 241 | kNone_GradientType, |
| 242 | kColor_GradientType, |
| 243 | kLinear_GradientType, |
| 244 | kRadial_GradientType, |
vandebo@chromium.org | d3ae779 | 2011-02-24 00:21:06 +0000 | [diff] [blame] | 245 | kSweep_GradientType, |
reed@google.com | 8322697 | 2012-06-07 20:26:47 +0000 | [diff] [blame] | 246 | kConical_GradientType, |
| 247 | kLast_GradientType = kConical_GradientType |
vandebo@chromium.org | d3ae779 | 2011-02-24 00:21:06 +0000 | [diff] [blame] | 248 | }; |
| 249 | |
| 250 | struct GradientInfo { |
| 251 | int fColorCount; //!< In-out parameter, specifies passed size |
| 252 | // of fColors/fColorOffsets on input, and |
| 253 | // actual number of colors/offsets on |
| 254 | // output. |
| 255 | SkColor* fColors; //!< The colors in the gradient. |
| 256 | SkScalar* fColorOffsets; //!< The unit offset for color transitions. |
| 257 | SkPoint fPoint[2]; //!< Type specific, see above. |
| 258 | SkScalar fRadius[2]; //!< Type specific, see above. |
| 259 | TileMode fTileMode; //!< The tile mode used. |
reed@google.com | 3d3a860 | 2013-05-24 14:58:44 +0000 | [diff] [blame] | 260 | uint32_t fGradientFlags; //!< see SkGradientShader::Flags |
vandebo@chromium.org | d3ae779 | 2011-02-24 00:21:06 +0000 | [diff] [blame] | 261 | }; |
| 262 | |
| 263 | virtual GradientType asAGradient(GradientInfo* info) const; |
| 264 | |
rileya@google.com | 03c1c35 | 2012-07-20 20:02:43 +0000 | [diff] [blame] | 265 | /** |
commit-bot@chromium.org | 7959055 | 2014-05-13 18:14:45 +0000 | [diff] [blame] | 266 | * If the shader subclass is composed of two shaders, return true, and if rec is not NULL, |
| 267 | * fill it out with info about the shader. |
commit-bot@chromium.org | 3055879 | 2014-05-14 14:28:34 +0000 | [diff] [blame] | 268 | * |
| 269 | * These are bare pointers; the ownership and reference count are unchanged. |
commit-bot@chromium.org | 7959055 | 2014-05-13 18:14:45 +0000 | [diff] [blame] | 270 | */ |
| 271 | |
| 272 | struct ComposeRec { |
| 273 | const SkShader* fShaderA; |
| 274 | const SkShader* fShaderB; |
| 275 | const SkXfermode* fMode; |
| 276 | }; |
| 277 | |
djsollen | c87dd2c | 2014-11-14 11:11:46 -0800 | [diff] [blame] | 278 | virtual bool asACompose(ComposeRec*) const { return false; } |
commit-bot@chromium.org | 7959055 | 2014-05-13 18:14:45 +0000 | [diff] [blame] | 279 | |
| 280 | |
| 281 | /** |
bsalomon | c21b09e | 2015-08-28 18:46:56 -0700 | [diff] [blame] | 282 | * Returns a GrFragmentProcessor that implements the shader for the GPU backend. NULL is |
| 283 | * returned if there is no GPU implementation. |
bsalomon | 83d081a | 2014-07-08 09:56:10 -0700 | [diff] [blame] | 284 | * |
bsalomon | c21b09e | 2015-08-28 18:46:56 -0700 | [diff] [blame] | 285 | * The GPU device does not call SkShader::createContext(), instead we pass the view matrix, |
| 286 | * local matrix, and filter quality directly. |
bsalomon | 83d081a | 2014-07-08 09:56:10 -0700 | [diff] [blame] | 287 | * |
bsalomon | c21b09e | 2015-08-28 18:46:56 -0700 | [diff] [blame] | 288 | * The GrContext may be used by the to create textures that are required by the returned |
| 289 | * processor. |
bsalomon | f1b7a1d | 2015-09-28 06:26:28 -0700 | [diff] [blame] | 290 | * |
| 291 | * The returned GrFragmentProcessor should expect an unpremultiplied input color and |
| 292 | * produce a premultiplied output. |
rileya@google.com | 03c1c35 | 2012-07-20 20:02:43 +0000 | [diff] [blame] | 293 | */ |
bsalomon | c21b09e | 2015-08-28 18:46:56 -0700 | [diff] [blame] | 294 | virtual const GrFragmentProcessor* asFragmentProcessor(GrContext*, |
| 295 | const SkMatrix& viewMatrix, |
| 296 | const SkMatrix* localMatrix, |
bsalomon | 4a33952 | 2015-10-06 08:40:50 -0700 | [diff] [blame] | 297 | SkFilterQuality) const; |
rileya@google.com | 03c1c35 | 2012-07-20 20:02:43 +0000 | [diff] [blame] | 298 | |
reed | 8367b8c | 2014-08-22 08:30:20 -0700 | [diff] [blame] | 299 | /** |
| 300 | * If the shader can represent its "average" luminance in a single color, return true and |
| 301 | * if color is not NULL, return that color. If it cannot, return false and ignore the color |
| 302 | * parameter. |
| 303 | * |
| 304 | * Note: if this returns true, the returned color will always be opaque, as only the RGB |
| 305 | * components are used to compute luminance. |
| 306 | */ |
| 307 | bool asLuminanceColor(SkColor*) const; |
| 308 | |
commit-bot@chromium.org | 7959055 | 2014-05-13 18:14:45 +0000 | [diff] [blame] | 309 | #ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK |
| 310 | /** |
| 311 | * If the shader is a custom shader which has data the caller might want, call this function |
| 312 | * to get that data. |
| 313 | */ |
scroggo | 01c412e | 2014-11-24 09:05:35 -0800 | [diff] [blame] | 314 | virtual bool asACustomShader(void** /* customData */) const { return false; } |
commit-bot@chromium.org | 7959055 | 2014-05-13 18:14:45 +0000 | [diff] [blame] | 315 | #endif |
| 316 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 317 | ////////////////////////////////////////////////////////////////////////// |
reed | f880e45 | 2015-12-30 13:39:41 -0800 | [diff] [blame] | 318 | // Methods to create combinations or variants of shaders |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 319 | |
commit-bot@chromium.org | ce56d96 | 2014-05-05 18:39:18 +0000 | [diff] [blame] | 320 | /** |
reed | f880e45 | 2015-12-30 13:39:41 -0800 | [diff] [blame] | 321 | * Return a shader that will apply the specified localMatrix to this shader. |
| 322 | * The specified matrix will be applied before any matrix associated with this shader. |
| 323 | */ |
| 324 | SkShader* newWithLocalMatrix(const SkMatrix&) const; |
reed | 3061af4 | 2016-01-07 15:47:29 -0800 | [diff] [blame] | 325 | |
| 326 | /** |
| 327 | * Create a new shader that produces the same colors as invoking this shader and then applying |
| 328 | * the colorfilter. |
| 329 | */ |
| 330 | SkShader* newWithColorFilter(SkColorFilter*) const; |
reed | a2b340f | 2016-02-10 08:53:15 -0800 | [diff] [blame] | 331 | |
reed | f880e45 | 2015-12-30 13:39:41 -0800 | [diff] [blame] | 332 | ////////////////////////////////////////////////////////////////////////// |
| 333 | // Factory methods for stock shaders |
| 334 | |
| 335 | /** |
commit-bot@chromium.org | ce56d96 | 2014-05-05 18:39:18 +0000 | [diff] [blame] | 336 | * Call this to create a new "empty" shader, that will not draw anything. |
| 337 | */ |
| 338 | static SkShader* CreateEmptyShader(); |
| 339 | |
reed | 8367b8c | 2014-08-22 08:30:20 -0700 | [diff] [blame] | 340 | /** |
| 341 | * Call this to create a new shader that just draws the specified color. This should always |
| 342 | * draw the same as a paint with this color (and no shader). |
| 343 | */ |
| 344 | static SkShader* CreateColorShader(SkColor); |
| 345 | |
reed | a2b340f | 2016-02-10 08:53:15 -0800 | [diff] [blame] | 346 | static SkShader* CreateComposeShader(SkShader* dst, SkShader* src, SkXfermode::Mode); |
| 347 | |
| 348 | /** |
| 349 | * Create a new compose shader, given shaders dst, src, and a combining xfermode mode. |
| 350 | * The xfermode is called with the output of the two shaders, and its output is returned. |
| 351 | * If xfer is null, SkXfermode::kSrcOver_Mode is assumed. |
| 352 | * |
| 353 | * Ownership of the shaders, and the xfermode if not null, is not transfered, so the caller |
| 354 | * is still responsible for managing its reference-count for those objects. |
| 355 | */ |
| 356 | static SkShader* CreateComposeShader(SkShader* dst, SkShader* src, SkXfermode* xfer); |
| 357 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 358 | /** Call this to create a new shader that will draw with the specified bitmap. |
reed@google.com | 99c114e | 2012-05-03 20:14:26 +0000 | [diff] [blame] | 359 | * |
| 360 | * If the bitmap cannot be used (e.g. has no pixels, or its dimensions |
| 361 | * exceed implementation limits (currently at 64K - 1)) then SkEmptyShader |
| 362 | * may be returned. |
| 363 | * |
commit-bot@chromium.org | 91246b9 | 2013-12-05 15:43:19 +0000 | [diff] [blame] | 364 | * If the src is kA8_Config then that mask will be colorized using the color on |
| 365 | * the paint. |
| 366 | * |
reed@google.com | 99c114e | 2012-05-03 20:14:26 +0000 | [diff] [blame] | 367 | * @param src The bitmap to use inside the shader |
| 368 | * @param tmx The tiling mode to use when sampling the bitmap in the x-direction. |
| 369 | * @param tmy The tiling mode to use when sampling the bitmap in the y-direction. |
| 370 | * @return Returns a new shader object. Note: this function never returns null. |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 371 | */ |
| 372 | static SkShader* CreateBitmapShader(const SkBitmap& src, |
commit-bot@chromium.org | 9c9005a | 2014-04-28 14:55:39 +0000 | [diff] [blame] | 373 | TileMode tmx, TileMode tmy, |
| 374 | const SkMatrix* localMatrix = NULL); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 375 | |
halcanary | a5f46e1 | 2015-09-08 07:12:25 -0700 | [diff] [blame] | 376 | // NOTE: You can create an SkImage Shader with SkImage::newShader(). |
| 377 | |
commit-bot@chromium.org | c5d9bb0 | 2014-04-08 15:19:34 +0000 | [diff] [blame] | 378 | /** Call this to create a new shader that will draw with the specified picture. |
| 379 | * |
| 380 | * @param src The picture to use inside the shader (if not NULL, its ref count |
commit-bot@chromium.org | 855e88e | 2014-04-21 19:33:12 +0000 | [diff] [blame] | 381 | * is incremented). The SkPicture must not be changed after |
| 382 | * successfully creating a picture shader. |
commit-bot@chromium.org | c5d9bb0 | 2014-04-08 15:19:34 +0000 | [diff] [blame] | 383 | * @param tmx The tiling mode to use when sampling the bitmap in the x-direction. |
| 384 | * @param tmy The tiling mode to use when sampling the bitmap in the y-direction. |
fmalita | b5f7826 | 2014-08-06 13:07:15 -0700 | [diff] [blame] | 385 | * @param tile The tile rectangle in picture coordinates: this represents the subset |
| 386 | * (or superset) of the picture used when building a tile. It is not |
| 387 | * affected by localMatrix and does not imply scaling (only translation |
| 388 | * and cropping). If null, the tile rect is considered equal to the picture |
| 389 | * bounds. |
commit-bot@chromium.org | c5d9bb0 | 2014-04-08 15:19:34 +0000 | [diff] [blame] | 390 | * @return Returns a new shader object. Note: this function never returns null. |
| 391 | */ |
fmalita | 2be0fd8 | 2014-12-08 09:04:05 -0800 | [diff] [blame] | 392 | static SkShader* CreatePictureShader(const SkPicture* src, |
fmalita | b5f7826 | 2014-08-06 13:07:15 -0700 | [diff] [blame] | 393 | TileMode tmx, TileMode tmy, |
| 394 | const SkMatrix* localMatrix, |
| 395 | const SkRect* tile); |
commit-bot@chromium.org | c5d9bb0 | 2014-04-08 15:19:34 +0000 | [diff] [blame] | 396 | |
commit-bot@chromium.org | 8fae213 | 2014-05-07 22:26:37 +0000 | [diff] [blame] | 397 | /** |
commit-bot@chromium.org | 8fae213 | 2014-05-07 22:26:37 +0000 | [diff] [blame] | 398 | * If this shader can be represented by another shader + a localMatrix, return that shader |
| 399 | * and, if not NULL, the localMatrix. If not, return NULL and ignore the localMatrix parameter. |
| 400 | * |
| 401 | * Note: the returned shader (if not NULL) will have been ref'd, and it is the responsibility |
| 402 | * of the caller to balance that with unref() when they are done. |
| 403 | */ |
| 404 | virtual SkShader* refAsALocalMatrixShader(SkMatrix* localMatrix) const; |
| 405 | |
robertphillips | 0a482f4 | 2015-01-26 07:00:04 -0800 | [diff] [blame] | 406 | SK_TO_STRING_VIRT() |
commit-bot@chromium.org | c0b7e10 | 2013-10-23 17:06:21 +0000 | [diff] [blame] | 407 | SK_DEFINE_FLATTENABLE_TYPE(SkShader) |
| 408 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 409 | protected: |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 410 | void flatten(SkWriteBuffer&) const override; |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 411 | |
commit-bot@chromium.org | ce56d96 | 2014-05-05 18:39:18 +0000 | [diff] [blame] | 412 | bool computeTotalInverse(const ContextRec&, SkMatrix* totalInverse) const; |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 413 | |
commit-bot@chromium.org | ce56d96 | 2014-05-05 18:39:18 +0000 | [diff] [blame] | 414 | /** |
| 415 | * Your subclass must also override contextSize() if it overrides onCreateContext(). |
| 416 | * Base class impl returns NULL. |
| 417 | */ |
| 418 | virtual Context* onCreateContext(const ContextRec&, void* storage) const; |
| 419 | |
reed | 773ceda | 2016-03-03 18:18:25 -0800 | [diff] [blame^] | 420 | /** |
| 421 | * Override this if your subclass overrides createContext, to return the correct size of |
| 422 | * your subclass' context. |
| 423 | */ |
| 424 | virtual size_t onContextSize(const ContextRec&) const; |
| 425 | |
reed | 8367b8c | 2014-08-22 08:30:20 -0700 | [diff] [blame] | 426 | virtual bool onAsLuminanceColor(SkColor*) const { |
| 427 | return false; |
| 428 | } |
reed | 0f0af23 | 2015-09-08 11:02:04 -0700 | [diff] [blame] | 429 | |
| 430 | virtual bool onIsABitmap(SkBitmap*, SkMatrix*, TileMode[2]) const { |
| 431 | return false; |
| 432 | } |
| 433 | |
commit-bot@chromium.org | ce56d96 | 2014-05-05 18:39:18 +0000 | [diff] [blame] | 434 | private: |
scroggo | ef0fd61 | 2014-07-11 11:33:52 -0700 | [diff] [blame] | 435 | // This is essentially const, but not officially so it can be modified in |
| 436 | // constructors. |
commit-bot@chromium.org | ce56d96 | 2014-05-05 18:39:18 +0000 | [diff] [blame] | 437 | SkMatrix fLocalMatrix; |
scroggo | c870d49 | 2014-07-11 10:42:12 -0700 | [diff] [blame] | 438 | |
| 439 | // So the SkLocalMatrixShader can whack fLocalMatrix in its SkReadBuffer constructor. |
| 440 | friend class SkLocalMatrixShader; |
reed | 7a4d847 | 2015-09-15 13:33:58 -0700 | [diff] [blame] | 441 | friend class SkBitmapProcShader; // for computeTotalInverse() |
scroggo | c870d49 | 2014-07-11 10:42:12 -0700 | [diff] [blame] | 442 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 443 | typedef SkFlattenable INHERITED; |
| 444 | }; |
| 445 | |
| 446 | #endif |