blob: a699c4ce00b7e4e1672d45517592db1395e8d90f [file] [log] [blame]
rileya@google.com1c6d64b2012-07-27 15:49:05 +00001/*
2 * Copyright 2012 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 SkGradientShaderPriv_DEFINED
9#define SkGradientShaderPriv_DEFINED
10
11#include "SkGradientShader.h"
12#include "SkClampRange.h"
13#include "SkColorPriv.h"
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000014#include "SkReadBuffer.h"
15#include "SkWriteBuffer.h"
rileya@google.com1c6d64b2012-07-27 15:49:05 +000016#include "SkMallocPixelRef.h"
commit-bot@chromium.org3339ac52014-05-22 02:55:59 +000017#include "SkUnitMapper.h"
rileya@google.com1c6d64b2012-07-27 15:49:05 +000018#include "SkUtils.h"
19#include "SkTemplates.h"
20#include "SkBitmapCache.h"
21#include "SkShader.h"
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +000022#include "SkOnce.h"
rileya@google.com1c6d64b2012-07-27 15:49:05 +000023
humper@google.com05af1af2013-01-07 16:47:43 +000024static inline void sk_memset32_dither(uint32_t dst[], uint32_t v0, uint32_t v1,
rileya@google.com1c6d64b2012-07-27 15:49:05 +000025 int count) {
26 if (count > 0) {
27 if (v0 == v1) {
28 sk_memset32(dst, v0, count);
29 } else {
30 int pairs = count >> 1;
31 for (int i = 0; i < pairs; i++) {
32 *dst++ = v0;
33 *dst++ = v1;
34 }
35 if (count & 1) {
36 *dst = v0;
37 }
38 }
39 }
40}
41
42// Clamp
43
humper@google.com05af1af2013-01-07 16:47:43 +000044static inline SkFixed clamp_tileproc(SkFixed x) {
rileya@google.com1c6d64b2012-07-27 15:49:05 +000045 return SkClampMax(x, 0xFFFF);
46}
47
48// Repeat
49
humper@google.com05af1af2013-01-07 16:47:43 +000050static inline SkFixed repeat_tileproc(SkFixed x) {
rileya@google.com1c6d64b2012-07-27 15:49:05 +000051 return x & 0xFFFF;
52}
53
54// Mirror
55
56// Visual Studio 2010 (MSC_VER=1600) optimizes bit-shift code incorrectly.
57// See http://code.google.com/p/skia/issues/detail?id=472
58#if defined(_MSC_VER) && (_MSC_VER >= 1600)
59#pragma optimize("", off)
60#endif
61
62static inline SkFixed mirror_tileproc(SkFixed x) {
63 int s = x << 15 >> 31;
64 return (x ^ s) & 0xFFFF;
65}
66
67#if defined(_MSC_VER) && (_MSC_VER >= 1600)
68#pragma optimize("", on)
69#endif
70
71///////////////////////////////////////////////////////////////////////////////
72
73typedef SkFixed (*TileProc)(SkFixed);
74
75///////////////////////////////////////////////////////////////////////////////
76
77static const TileProc gTileProcs[] = {
78 clamp_tileproc,
79 repeat_tileproc,
80 mirror_tileproc
81};
82
83///////////////////////////////////////////////////////////////////////////////
84
85class SkGradientShaderBase : public SkShader {
86public:
reed@google.com437d6eb2013-05-23 19:03:05 +000087 struct Descriptor {
88 Descriptor() {
89 sk_bzero(this, sizeof(*this));
90 fTileMode = SkShader::kClamp_TileMode;
91 }
skia.committer@gmail.com3e2345a2013-05-24 07:01:26 +000092
reed@google.com437d6eb2013-05-23 19:03:05 +000093 const SkColor* fColors;
94 const SkScalar* fPos;
95 int fCount;
96 SkShader::TileMode fTileMode;
commit-bot@chromium.org3339ac52014-05-22 02:55:59 +000097 SkUnitMapper* fMapper;
commit-bot@chromium.org6c5aea22014-04-22 16:25:15 +000098 uint32_t fGradFlags;
reed@google.com437d6eb2013-05-23 19:03:05 +000099 };
100
101public:
commit-bot@chromium.org9c9005a2014-04-28 14:55:39 +0000102 SkGradientShaderBase(const Descriptor& desc, const SkMatrix* localMatrix);
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000103 virtual ~SkGradientShaderBase();
104
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000105 // The cache is initialized on-demand when getCache16/32 is called.
106 class GradientShaderCache : public SkRefCnt {
107 public:
108 GradientShaderCache(U8CPU alpha, const SkGradientShaderBase& shader);
109 ~GradientShaderCache();
110
111 const uint16_t* getCache16();
112 const SkPMColor* getCache32();
113
114 SkMallocPixelRef* getCache32PixelRef() const { return fCache32PixelRef; }
115
116 unsigned getAlpha() const { return fCacheAlpha; }
117
118 private:
119 // Working pointers. If either is NULL, we need to recompute the corresponding cache values.
120 uint16_t* fCache16;
121 SkPMColor* fCache32;
122
123 uint16_t* fCache16Storage; // Storage for fCache16, allocated on demand.
124 SkMallocPixelRef* fCache32PixelRef;
125 const unsigned fCacheAlpha; // The alpha value we used when we computed the cache.
126 // Larger than 8bits so we can store uninitialized
127 // value.
128
129 const SkGradientShaderBase& fShader;
130
131 // Make sure we only initialize the caches once.
132 bool fCache16Inited, fCache32Inited;
133 SkMutex fCache16Mutex, fCache32Mutex;
134
135 static void initCache16(GradientShaderCache* cache);
136 static void initCache32(GradientShaderCache* cache);
137
138 static void Build16bitCache(uint16_t[], SkColor c0, SkColor c1, int count);
139 static void Build32bitCache(SkPMColor[], SkColor c0, SkColor c1, int count,
140 U8CPU alpha, uint32_t gradFlags);
141 };
142
143 class GradientShaderBaseContext : public SkShader::Context {
144 public:
commit-bot@chromium.orge901b6d2014-05-01 19:31:31 +0000145 GradientShaderBaseContext(const SkGradientShaderBase& shader, const ContextRec&);
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000146
147 virtual uint32_t getFlags() const SK_OVERRIDE { return fFlags; }
148
149 protected:
150 SkMatrix fDstToIndex;
151 SkMatrix::MapXYProc fDstToIndexProc;
152 uint8_t fDstToIndexClass;
153 uint8_t fFlags;
154
155 SkAutoTUnref<GradientShaderCache> fCache;
156
157 private:
158 typedef SkShader::Context INHERITED;
159 };
160
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000161 virtual bool isOpaque() const SK_OVERRIDE;
162
163 void getGradientTableBitmap(SkBitmap*) const;
164
165 enum {
166 /// Seems like enough for visual accuracy. TODO: if pos[] deserves
167 /// it, use a larger cache.
168 kCache16Bits = 8,
reed@google.com3c2102c2013-02-01 12:59:40 +0000169 kCache16Count = (1 << kCache16Bits),
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000170 kCache16Shift = 16 - kCache16Bits,
171 kSqrt16Shift = 8 - kCache16Bits,
172
173 /// Seems like enough for visual accuracy. TODO: if pos[] deserves
174 /// it, use a larger cache.
175 kCache32Bits = 8,
reed@google.com60040292013-02-04 18:21:23 +0000176 kCache32Count = (1 << kCache32Bits),
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000177 kCache32Shift = 16 - kCache32Bits,
178 kSqrt32Shift = 8 - kCache32Bits,
179
180 /// This value is used to *read* the dither cache; it may be 0
181 /// if dithering is disabled.
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000182 kDitherStride32 = kCache32Count,
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000183 kDitherStride16 = kCache16Count,
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000184 };
185
commit-bot@chromium.org996402b2014-04-18 14:42:11 +0000186 enum GpuColorType {
187 kTwo_GpuColorType,
188 kThree_GpuColorType, // Symmetric three color
189 kTexture_GpuColorType
190 };
191
192 // Determines and returns the gradient is a two color gradient, symmetric three color gradient
193 // or other (texture gradient). If it is two or symmetric three color, the colors array will
194 // also be filled with the gradient colors
195 GpuColorType getGpuColorType(SkColor colors[3]) const;
196
commit-bot@chromium.org6c5aea22014-04-22 16:25:15 +0000197 uint32_t getGradFlags() const { return fGradFlags; }
commit-bot@chromium.org53783b02014-04-17 21:09:49 +0000198
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000199protected:
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +0000200 SkGradientShaderBase(SkReadBuffer& );
201 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE;
commit-bot@chromium.org0f10f7b2014-03-13 18:02:17 +0000202 SK_TO_STRING_OVERRIDE()
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000203
commit-bot@chromium.org3339ac52014-05-22 02:55:59 +0000204 SkUnitMapper* fMapper;
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000205 SkMatrix fPtsToUnit; // set by subclass
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000206 TileMode fTileMode;
207 TileProc fTileProc;
208 int fColorCount;
reed@google.com3d3a8602013-05-24 14:58:44 +0000209 uint8_t fGradFlags;
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000210
211 struct Rec {
212 SkFixed fPos; // 0...1
213 uint32_t fScale; // (1 << 24) / range
214 };
215 Rec* fRecs;
216
commit-bot@chromium.org44d83c12014-04-21 13:10:25 +0000217 void commonAsAGradient(GradientInfo*, bool flipGrad = false) const;
skia.committer@gmail.comd3b28e82014-04-22 03:05:17 +0000218
commit-bot@chromium.org44d83c12014-04-21 13:10:25 +0000219 /*
220 * Takes in pointers to gradient color and Rec info as colorSrc and recSrc respectively.
221 * Count is the number of colors in the gradient
222 * It will then flip all the color and rec information and return in their respective Dst
223 * pointers. It is assumed that space has already been allocated for the Dst pointers.
224 * The rec src and dst are only assumed to be valid if count > 2
225 */
226 static void FlipGradientColors(SkColor* colorDst, Rec* recDst,
227 SkColor* colorSrc, Rec* recSrc,
228 int count);
229
230 // V23_COMPATIBILITY_CODE
231 // Used for 2-pt conical gradients since we sort start/end cirlces by radius
232 // Assumes space has already been allocated for fOrigColors
233 void flipGradientColors();
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000234
235private:
236 enum {
237 kColorStorageCount = 4, // more than this many colors, and we'll use sk_malloc for the space
238
239 kStorageSize = kColorStorageCount * (sizeof(SkColor) + sizeof(Rec))
240 };
241 SkColor fStorage[(kStorageSize + 3) >> 2];
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000242 SkColor* fOrigColors; // original colors, before modulation by paint in context.
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000243 bool fColorsAreOpaque;
244
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000245 GradientShaderCache* refCache(U8CPU alpha) const;
246 mutable SkMutex fCacheMutex;
247 mutable SkAutoTUnref<GradientShaderCache> fCache;
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000248
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000249 void initCommon();
250
251 typedef SkShader INHERITED;
252};
253
reed@google.com55853db2013-02-01 19:34:59 +0000254static inline int init_dither_toggle(int x, int y) {
reed@google.com60040292013-02-04 18:21:23 +0000255 x &= 1;
256 y = (y & 1) << 1;
257 return (x | y) * SkGradientShaderBase::kDitherStride32;
reed@google.com55853db2013-02-01 19:34:59 +0000258}
259
260static inline int next_dither_toggle(int toggle) {
261 return toggle ^ SkGradientShaderBase::kDitherStride32;
262}
263
264static inline int init_dither_toggle16(int x, int y) {
265 return ((x ^ y) & 1) * SkGradientShaderBase::kDitherStride16;
266}
267
268static inline int next_dither_toggle16(int toggle) {
269 return toggle ^ SkGradientShaderBase::kDitherStride16;
270}
271
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000272///////////////////////////////////////////////////////////////////////////////
273
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000274#if SK_SUPPORT_GPU
275
bsalomon@google.com77af6802013-10-02 13:04:56 +0000276#include "GrCoordTransform.h"
bsalomon@google.comd698f772012-10-25 13:22:00 +0000277#include "gl/GrGLEffect.h"
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000278
bsalomon@google.com08283af2012-10-26 13:01:20 +0000279class GrEffectStage;
bsalomon@google.com396e61f2012-10-25 19:00:29 +0000280class GrBackendEffectFactory;
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000281
282/*
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +0000283 * The interpretation of the texture matrix depends on the sample mode. The
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000284 * texture matrix is applied both when the texture coordinates are explicit
285 * and when vertex positions are used as texture coordinates. In the latter
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000286 * case the texture matrix is applied to the pre-view-matrix position
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000287 * values.
288 *
289 * Normal SampleMode
290 * The post-matrix texture coordinates are in normalize space with (0,0) at
291 * the top-left and (1,1) at the bottom right.
292 * RadialGradient
293 * The matrix specifies the radial gradient parameters.
294 * (0,0) in the post-matrix space is center of the radial gradient.
295 * Radial2Gradient
296 * Matrix transforms to space where first circle is centered at the
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000297 * origin. The second circle will be centered (x, 0) where x may be
298 * 0 and is provided by setRadial2Params. The post-matrix space is
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000299 * normalized such that 1 is the second radius - first radius.
300 * SweepGradient
301 * The angle from the origin of texture coordinates in post-matrix space
302 * determines the gradient value.
303 */
304
rileya@google.comb3e50f22012-08-20 17:43:08 +0000305 class GrTextureStripAtlas;
306
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000307// Base class for Gr gradient effects
bsalomon@google.coma469c282012-10-24 18:28:34 +0000308class GrGradientEffect : public GrEffect {
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000309public:
310
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +0000311 GrGradientEffect(GrContext* ctx,
312 const SkGradientShaderBase& shader,
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +0000313 const SkMatrix& matrix,
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +0000314 SkShader::TileMode tileMode);
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000315
316 virtual ~GrGradientEffect();
317
rileya@google.comb3e50f22012-08-20 17:43:08 +0000318 bool useAtlas() const { return SkToBool(-1 != fRow); }
bsalomon@google.com81712882012-11-01 17:12:34 +0000319 SkScalar getYCoord() const { return fYCoord; };
rileya@google.comb3e50f22012-08-20 17:43:08 +0000320
bsalomon@google.com68b58c92013-01-17 16:50:08 +0000321 virtual void getConstantColorComponents(GrColor* color, uint32_t* validFlags) const SK_OVERRIDE;
skia.committer@gmail.com9a070f22013-09-10 07:01:44 +0000322
commit-bot@chromium.org996402b2014-04-18 14:42:11 +0000323 SkGradientShaderBase::GpuColorType getColorType() const { return fColorType; }
bsalomon@google.com82d12232013-09-09 15:36:26 +0000324
325 enum PremulType {
326 kBeforeInterp_PremulType,
327 kAfterInterp_PremulType,
328 };
329
330 PremulType getPremulType() const { return fPremulType; }
331
332 const SkColor* getColors(int pos) const {
commit-bot@chromium.org996402b2014-04-18 14:42:11 +0000333 SkASSERT(fColorType != SkGradientShaderBase::kTexture_GpuColorType);
bsalomon@google.com82d12232013-09-09 15:36:26 +0000334 SkASSERT((pos-1) <= fColorType);
335 return &fColors[pos];
336 }
bsalomon@google.com371e1052013-01-11 21:08:55 +0000337
bsalomon@google.comd4726202012-08-03 14:34:46 +0000338protected:
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000339
bsalomon@google.comd4726202012-08-03 14:34:46 +0000340 /** Populates a pair of arrays with colors and stop info to construct a random gradient.
341 The function decides whether stop values should be used or not. The return value indicates
342 the number of colors, which will be capped by kMaxRandomGradientColors. colors should be
343 sized to be at least kMaxRandomGradientColors. stops is a pointer to an array of at least
344 size kMaxRandomGradientColors. It may be updated to NULL, indicating that NULL should be
345 passed to the gradient factory rather than the array.
346 */
347 static const int kMaxRandomGradientColors = 4;
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +0000348 static int RandomGradientParams(SkRandom* r,
bsalomon@google.comd4726202012-08-03 14:34:46 +0000349 SkColor colors[kMaxRandomGradientColors],
350 SkScalar** stops,
351 SkShader::TileMode* tm);
352
bsalomon@google.com8a252f72013-01-22 20:35:13 +0000353 virtual bool onIsEqual(const GrEffect& effect) const SK_OVERRIDE;
bsalomon@google.com68b58c92013-01-17 16:50:08 +0000354
commit-bot@chromium.org5fd7d5c2013-10-04 01:20:09 +0000355 const GrCoordTransform& getCoordTransform() const { return fCoordTransform; }
356
bsalomon@google.comd4726202012-08-03 14:34:46 +0000357private:
bsalomon@google.com77af6802013-10-02 13:04:56 +0000358 static const GrCoordSet kCoordSet = kLocal_GrCoordSet;
bsalomon@google.com68b58c92013-01-17 16:50:08 +0000359
bsalomon@google.com77af6802013-10-02 13:04:56 +0000360 GrCoordTransform fCoordTransform;
bsalomon@google.com6d003d12012-09-11 15:45:20 +0000361 GrTextureAccess fTextureAccess;
bsalomon@google.com81712882012-11-01 17:12:34 +0000362 SkScalar fYCoord;
rileya@google.comb3e50f22012-08-20 17:43:08 +0000363 GrTextureStripAtlas* fAtlas;
364 int fRow;
bsalomon@google.com371e1052013-01-11 21:08:55 +0000365 bool fIsOpaque;
commit-bot@chromium.org996402b2014-04-18 14:42:11 +0000366 SkGradientShaderBase::GpuColorType fColorType;
367 SkColor fColors[3]; // More than 3 colors we use texture
bsalomon@google.com82d12232013-09-09 15:36:26 +0000368 PremulType fPremulType; // This only changes behavior for two and three color special cases.
369 // It is already baked into to the table for texture gradients.
bsalomon@google.coma469c282012-10-24 18:28:34 +0000370 typedef GrEffect INHERITED;
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000371
372};
373
374///////////////////////////////////////////////////////////////////////////////
375
bsalomon@google.com8ea78d82012-10-24 20:11:30 +0000376// Base class for GL gradient effects
bsalomon@google.comf78df332012-10-29 12:43:38 +0000377class GrGLGradientEffect : public GrGLEffect {
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000378public:
bsalomon@google.com0707c292012-10-25 21:45:42 +0000379 GrGLGradientEffect(const GrBackendEffectFactory& factory);
380 virtual ~GrGLGradientEffect();
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000381
bsalomon@google.comc7818882013-03-20 19:19:53 +0000382 virtual void setData(const GrGLUniformManager&, const GrDrawEffect&) SK_OVERRIDE;
rileya@google.comb3e50f22012-08-20 17:43:08 +0000383
bsalomon@google.comf78df332012-10-29 12:43:38 +0000384protected:
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +0000385 enum {
bsalomon@google.com82d12232013-09-09 15:36:26 +0000386 kPremulTypeKeyBitCnt = 1,
bsalomon@google.com77af6802013-10-02 13:04:56 +0000387 kPremulTypeMask = 1,
bsalomon@google.com82d12232013-09-09 15:36:26 +0000388 kPremulBeforeInterpKey = kPremulTypeMask,
389
bsalomon@google.com77af6802013-10-02 13:04:56 +0000390 kTwoColorKey = 2 << kPremulTypeKeyBitCnt,
391 kThreeColorKey = 3 << kPremulTypeKeyBitCnt,
bsalomon@google.com82d12232013-09-09 15:36:26 +0000392 kColorKeyMask = kTwoColorKey | kThreeColorKey,
393 kColorKeyBitCnt = 2,
394
395 // Subclasses must shift any key bits they produce up by this amount
396 // and combine with the result of GenBaseGradientKey.
bsalomon@google.com77af6802013-10-02 13:04:56 +0000397 kBaseKeyBitCnt = (kPremulTypeKeyBitCnt + kColorKeyBitCnt)
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +0000398 };
399
commit-bot@chromium.org996402b2014-04-18 14:42:11 +0000400 static SkGradientShaderBase::GpuColorType ColorTypeFromKey(EffectKey key){
bsalomon@google.com82d12232013-09-09 15:36:26 +0000401 if (kTwoColorKey == (key & kColorKeyMask)) {
commit-bot@chromium.org996402b2014-04-18 14:42:11 +0000402 return SkGradientShaderBase::kTwo_GpuColorType;
bsalomon@google.com82d12232013-09-09 15:36:26 +0000403 } else if (kThreeColorKey == (key & kColorKeyMask)) {
commit-bot@chromium.org996402b2014-04-18 14:42:11 +0000404 return SkGradientShaderBase::kThree_GpuColorType;
405 } else {return SkGradientShaderBase::kTexture_GpuColorType;}
bsalomon@google.com82d12232013-09-09 15:36:26 +0000406 }
407
408 static GrGradientEffect::PremulType PremulTypeFromKey(EffectKey key){
409 if (kPremulBeforeInterpKey == (key & kPremulTypeMask)) {
410 return GrGradientEffect::kBeforeInterp_PremulType;
411 } else {
412 return GrGradientEffect::kAfterInterp_PremulType;
413 }
414 }
415
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +0000416 /**
bsalomon@google.com82d12232013-09-09 15:36:26 +0000417 * Subclasses must call this. It will return a value restricted to the lower kBaseKeyBitCnt
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +0000418 * bits.
419 */
bsalomon@google.com82d12232013-09-09 15:36:26 +0000420 static EffectKey GenBaseGradientKey(const GrDrawEffect&);
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +0000421
bsalomon@google.comf78df332012-10-29 12:43:38 +0000422 // Emits the uniform used as the y-coord to texture samples in derived classes. Subclasses
423 // should call this method from their emitCode().
bsalomon@google.com82d12232013-09-09 15:36:26 +0000424 void emitUniforms(GrGLShaderBuilder* builder, EffectKey key);
bsalomon@google.comf78df332012-10-29 12:43:38 +0000425
bsalomon@google.com82d12232013-09-09 15:36:26 +0000426
427 // emit code that gets a fragment's color from an expression for t; Has branches for 3 separate
428 // control flows inside -- 2 color gradients, 3 color symmetric gradients (both using
429 // native GLSL mix), and 4+ color gradients that use the traditional texture lookup.
430 void emitColor(GrGLShaderBuilder* builder,
431 const char* gradientTValue,
432 EffectKey key,
433 const char* outputColor,
434 const char* inputColor,
commit-bot@chromium.org3390b9a2013-10-03 15:17:58 +0000435 const TextureSamplerArray& samplers);
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000436
437private:
bsalomon@google.com81712882012-11-01 17:12:34 +0000438 SkScalar fCachedYCoord;
rileya@google.comb3e50f22012-08-20 17:43:08 +0000439 GrGLUniformManager::UniformHandle fFSYUni;
bsalomon@google.com82d12232013-09-09 15:36:26 +0000440 GrGLUniformManager::UniformHandle fColorStartUni;
441 GrGLUniformManager::UniformHandle fColorMidUni;
442 GrGLUniformManager::UniformHandle fColorEndUni;
rileya@google.comb3e50f22012-08-20 17:43:08 +0000443
bsalomon@google.comf78df332012-10-29 12:43:38 +0000444 typedef GrGLEffect INHERITED;
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000445};
446
447#endif
448
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000449#endif