blob: 916cf78f0df5366fbf8404c07fe3d8cb01547052 [file] [log] [blame]
sugoi@google.come3b4c502013-04-05 13:47:09 +00001/*
2 * Copyright 2013 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#include "SkDither.h"
9#include "SkPerlinNoiseShader.h"
commit-bot@chromium.orgc2a0ea62013-11-06 10:08:38 +000010#include "SkColorFilter.h"
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000011#include "SkReadBuffer.h"
12#include "SkWriteBuffer.h"
sugoi@google.come3b4c502013-04-05 13:47:09 +000013#include "SkShader.h"
14#include "SkUnPreMultiply.h"
15#include "SkString.h"
16
17#if SK_SUPPORT_GPU
18#include "GrContext.h"
bsalomon@google.com77af6802013-10-02 13:04:56 +000019#include "GrCoordTransform.h"
egdaniel605dd0f2014-11-12 08:35:25 -080020#include "GrInvariantOutput.h"
joshualitteb2a6762014-12-04 11:35:33 -080021#include "SkGr.h"
bsalomonc21b09e2015-08-28 18:46:56 -070022#include "effects/GrConstColorProcessor.h"
egdaniel64c47282015-11-13 06:54:19 -080023#include "glsl/GrGLSLFragmentProcessor.h"
egdaniel2d721d32015-11-11 13:06:05 -080024#include "glsl/GrGLSLFragmentShaderBuilder.h"
25#include "glsl/GrGLSLProgramBuilder.h"
egdaniel018fb622015-10-28 07:26:40 -070026#include "glsl/GrGLSLProgramDataManager.h"
sugoi@google.come3b4c502013-04-05 13:47:09 +000027#endif
28
29static const int kBlockSize = 256;
30static const int kBlockMask = kBlockSize - 1;
31static const int kPerlinNoise = 4096;
32static const int kRandMaximum = SK_MaxS32; // 2**31 - 1
33
34namespace {
35
36// noiseValue is the color component's value (or color)
37// limitValue is the maximum perlin noise array index value allowed
38// newValue is the current noise dimension (either width or height)
39inline int checkNoise(int noiseValue, int limitValue, int newValue) {
40 // If the noise value would bring us out of bounds of the current noise array while we are
41 // stiching noise tiles together, wrap the noise around the current dimension of the noise to
42 // stay within the array bounds in a continuous fashion (so that tiling lines are not visible)
43 if (noiseValue >= limitValue) {
44 noiseValue -= newValue;
45 }
sugoi@google.come3b4c502013-04-05 13:47:09 +000046 return noiseValue;
47}
48
49inline SkScalar smoothCurve(SkScalar t) {
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +000050 static const SkScalar SK_Scalar3 = 3.0f;
sugoi@google.come3b4c502013-04-05 13:47:09 +000051
52 // returns t * t * (3 - 2 * t)
53 return SkScalarMul(SkScalarSquare(t), SK_Scalar3 - 2 * t);
54}
55
56} // end namespace
57
58struct SkPerlinNoiseShader::StitchData {
59 StitchData()
60 : fWidth(0)
61 , fWrapX(0)
62 , fHeight(0)
63 , fWrapY(0)
64 {}
65
66 bool operator==(const StitchData& other) const {
67 return fWidth == other.fWidth &&
68 fWrapX == other.fWrapX &&
69 fHeight == other.fHeight &&
70 fWrapY == other.fWrapY;
71 }
72
73 int fWidth; // How much to subtract to wrap for stitching.
74 int fWrapX; // Minimum value to wrap.
75 int fHeight;
76 int fWrapY;
77};
78
79struct SkPerlinNoiseShader::PaintingData {
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +000080 PaintingData(const SkISize& tileSize, SkScalar seed,
senorblancoca6a7c22014-06-27 13:35:52 -070081 SkScalar baseFrequencyX, SkScalar baseFrequencyY,
82 const SkMatrix& matrix)
sugoi@google.come3b4c502013-04-05 13:47:09 +000083 {
reed11fa2242015-03-13 06:08:28 -070084 SkVector vec[2] = {
85 { SkScalarInvert(baseFrequencyX), SkScalarInvert(baseFrequencyY) },
86 { SkIntToScalar(tileSize.fWidth), SkIntToScalar(tileSize.fHeight) },
87 };
88 matrix.mapVectors(vec, 2);
89
90 fBaseFrequency.set(SkScalarInvert(vec[0].fX), SkScalarInvert(vec[0].fY));
91 fTileSize.set(SkScalarRoundToInt(vec[1].fX), SkScalarRoundToInt(vec[1].fY));
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +000092 this->init(seed);
93 if (!fTileSize.isEmpty()) {
94 this->stitch();
95 }
96
senorblancof3b50272014-06-16 10:49:58 -070097#if SK_SUPPORT_GPU
commit-bot@chromium.orga3264e52014-05-30 13:26:10 +000098 fPermutationsBitmap.setInfo(SkImageInfo::MakeA8(kBlockSize, 1));
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +000099 fPermutationsBitmap.setPixels(fLatticeSelector);
100
commit-bot@chromium.orga3264e52014-05-30 13:26:10 +0000101 fNoiseBitmap.setInfo(SkImageInfo::MakeN32Premul(kBlockSize, 4));
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +0000102 fNoiseBitmap.setPixels(fNoise[0][0]);
103#endif
sugoi@google.come3b4c502013-04-05 13:47:09 +0000104 }
105
106 int fSeed;
107 uint8_t fLatticeSelector[kBlockSize];
108 uint16_t fNoise[4][kBlockSize][2];
109 SkPoint fGradient[4][kBlockSize];
110 SkISize fTileSize;
111 SkVector fBaseFrequency;
112 StitchData fStitchDataInit;
113
114private:
115
senorblancof3b50272014-06-16 10:49:58 -0700116#if SK_SUPPORT_GPU
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +0000117 SkBitmap fPermutationsBitmap;
118 SkBitmap fNoiseBitmap;
119#endif
sugoi@google.come3b4c502013-04-05 13:47:09 +0000120
121 inline int random() {
122 static const int gRandAmplitude = 16807; // 7**5; primitive root of m
123 static const int gRandQ = 127773; // m / a
124 static const int gRandR = 2836; // m % a
125
126 int result = gRandAmplitude * (fSeed % gRandQ) - gRandR * (fSeed / gRandQ);
127 if (result <= 0)
128 result += kRandMaximum;
129 fSeed = result;
130 return result;
131 }
132
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +0000133 // Only called once. Could be part of the constructor.
sugoi@google.come3b4c502013-04-05 13:47:09 +0000134 void init(SkScalar seed)
135 {
136 static const SkScalar gInvBlockSizef = SkScalarInvert(SkIntToScalar(kBlockSize));
137
senorblanco@chromium.org857e3202014-01-09 17:41:42 +0000138 // According to the SVG spec, we must truncate (not round) the seed value.
139 fSeed = SkScalarTruncToInt(seed);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000140 // The seed value clamp to the range [1, kRandMaximum - 1].
sugoi@google.come3b4c502013-04-05 13:47:09 +0000141 if (fSeed <= 0) {
142 fSeed = -(fSeed % (kRandMaximum - 1)) + 1;
143 }
144 if (fSeed > kRandMaximum - 1) {
145 fSeed = kRandMaximum - 1;
146 }
147 for (int channel = 0; channel < 4; ++channel) {
148 for (int i = 0; i < kBlockSize; ++i) {
149 fLatticeSelector[i] = i;
150 fNoise[channel][i][0] = (random() % (2 * kBlockSize));
151 fNoise[channel][i][1] = (random() % (2 * kBlockSize));
152 }
153 }
154 for (int i = kBlockSize - 1; i > 0; --i) {
155 int k = fLatticeSelector[i];
156 int j = random() % kBlockSize;
157 SkASSERT(j >= 0);
158 SkASSERT(j < kBlockSize);
159 fLatticeSelector[i] = fLatticeSelector[j];
160 fLatticeSelector[j] = k;
161 }
162
163 // Perform the permutations now
164 {
165 // Copy noise data
166 uint16_t noise[4][kBlockSize][2];
167 for (int i = 0; i < kBlockSize; ++i) {
168 for (int channel = 0; channel < 4; ++channel) {
169 for (int j = 0; j < 2; ++j) {
170 noise[channel][i][j] = fNoise[channel][i][j];
171 }
172 }
173 }
174 // Do permutations on noise data
175 for (int i = 0; i < kBlockSize; ++i) {
176 for (int channel = 0; channel < 4; ++channel) {
177 for (int j = 0; j < 2; ++j) {
178 fNoise[channel][i][j] = noise[channel][fLatticeSelector[i]][j];
179 }
180 }
181 }
182 }
183
184 // Half of the largest possible value for 16 bit unsigned int
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +0000185 static const SkScalar gHalfMax16bits = 32767.5f;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000186
187 // Compute gradients from permutated noise data
188 for (int channel = 0; channel < 4; ++channel) {
189 for (int i = 0; i < kBlockSize; ++i) {
190 fGradient[channel][i] = SkPoint::Make(
191 SkScalarMul(SkIntToScalar(fNoise[channel][i][0] - kBlockSize),
192 gInvBlockSizef),
skia.committer@gmail.comcff02432013-04-06 07:01:10 +0000193 SkScalarMul(SkIntToScalar(fNoise[channel][i][1] - kBlockSize),
sugoi@google.come3b4c502013-04-05 13:47:09 +0000194 gInvBlockSizef));
195 fGradient[channel][i].normalize();
196 // Put the normalized gradient back into the noise data
197 fNoise[channel][i][0] = SkScalarRoundToInt(SkScalarMul(
sugoi@google.comd537af52013-06-10 13:59:25 +0000198 fGradient[channel][i].fX + SK_Scalar1, gHalfMax16bits));
sugoi@google.come3b4c502013-04-05 13:47:09 +0000199 fNoise[channel][i][1] = SkScalarRoundToInt(SkScalarMul(
sugoi@google.comd537af52013-06-10 13:59:25 +0000200 fGradient[channel][i].fY + SK_Scalar1, gHalfMax16bits));
sugoi@google.come3b4c502013-04-05 13:47:09 +0000201 }
202 }
sugoi@google.come3b4c502013-04-05 13:47:09 +0000203 }
204
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +0000205 // Only called once. Could be part of the constructor.
sugoi@google.come3b4c502013-04-05 13:47:09 +0000206 void stitch() {
207 SkScalar tileWidth = SkIntToScalar(fTileSize.width());
208 SkScalar tileHeight = SkIntToScalar(fTileSize.height());
209 SkASSERT(tileWidth > 0 && tileHeight > 0);
210 // When stitching tiled turbulence, the frequencies must be adjusted
211 // so that the tile borders will be continuous.
212 if (fBaseFrequency.fX) {
reed@google.com8015cdd2013-12-18 15:49:32 +0000213 SkScalar lowFrequencx =
214 SkScalarFloorToScalar(tileWidth * fBaseFrequency.fX) / tileWidth;
215 SkScalar highFrequencx =
216 SkScalarCeilToScalar(tileWidth * fBaseFrequency.fX) / tileWidth;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000217 // BaseFrequency should be non-negative according to the standard.
reed80ea19c2015-05-12 10:37:34 -0700218 if (fBaseFrequency.fX / lowFrequencx < highFrequencx / fBaseFrequency.fX) {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000219 fBaseFrequency.fX = lowFrequencx;
220 } else {
221 fBaseFrequency.fX = highFrequencx;
222 }
223 }
224 if (fBaseFrequency.fY) {
reed@google.com8015cdd2013-12-18 15:49:32 +0000225 SkScalar lowFrequency =
226 SkScalarFloorToScalar(tileHeight * fBaseFrequency.fY) / tileHeight;
227 SkScalar highFrequency =
228 SkScalarCeilToScalar(tileHeight * fBaseFrequency.fY) / tileHeight;
reed80ea19c2015-05-12 10:37:34 -0700229 if (fBaseFrequency.fY / lowFrequency < highFrequency / fBaseFrequency.fY) {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000230 fBaseFrequency.fY = lowFrequency;
231 } else {
232 fBaseFrequency.fY = highFrequency;
233 }
234 }
235 // Set up TurbulenceInitial stitch values.
236 fStitchDataInit.fWidth =
reed@google.com8015cdd2013-12-18 15:49:32 +0000237 SkScalarRoundToInt(tileWidth * fBaseFrequency.fX);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000238 fStitchDataInit.fWrapX = kPerlinNoise + fStitchDataInit.fWidth;
239 fStitchDataInit.fHeight =
reed@google.com8015cdd2013-12-18 15:49:32 +0000240 SkScalarRoundToInt(tileHeight * fBaseFrequency.fY);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000241 fStitchDataInit.fWrapY = kPerlinNoise + fStitchDataInit.fHeight;
242 }
243
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +0000244public:
sugoi@google.come3b4c502013-04-05 13:47:09 +0000245
senorblancof3b50272014-06-16 10:49:58 -0700246#if SK_SUPPORT_GPU
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +0000247 const SkBitmap& getPermutationsBitmap() const { return fPermutationsBitmap; }
248
249 const SkBitmap& getNoiseBitmap() const { return fNoiseBitmap; }
250#endif
sugoi@google.come3b4c502013-04-05 13:47:09 +0000251};
252
253SkShader* SkPerlinNoiseShader::CreateFractalNoise(SkScalar baseFrequencyX, SkScalar baseFrequencyY,
254 int numOctaves, SkScalar seed,
255 const SkISize* tileSize) {
halcanary385fe4d2015-08-26 13:07:48 -0700256 return new SkPerlinNoiseShader(kFractalNoise_Type, baseFrequencyX, baseFrequencyY, numOctaves,
257 seed, tileSize);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000258}
259
commit-bot@chromium.org9fbbcca2014-04-01 16:09:37 +0000260SkShader* SkPerlinNoiseShader::CreateTurbulence(SkScalar baseFrequencyX, SkScalar baseFrequencyY,
sugoi@google.come3b4c502013-04-05 13:47:09 +0000261 int numOctaves, SkScalar seed,
262 const SkISize* tileSize) {
halcanary385fe4d2015-08-26 13:07:48 -0700263 return new SkPerlinNoiseShader(kTurbulence_Type, baseFrequencyX, baseFrequencyY, numOctaves,
264 seed, tileSize);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000265}
266
267SkPerlinNoiseShader::SkPerlinNoiseShader(SkPerlinNoiseShader::Type type,
268 SkScalar baseFrequencyX,
269 SkScalar baseFrequencyY,
270 int numOctaves,
271 SkScalar seed,
272 const SkISize* tileSize)
273 : fType(type)
274 , fBaseFrequencyX(baseFrequencyX)
275 , fBaseFrequencyY(baseFrequencyY)
commit-bot@chromium.orgce33d602013-11-25 21:46:31 +0000276 , fNumOctaves(numOctaves > 255 ? 255 : numOctaves/*[0,255] octaves allowed*/)
sugoi@google.come3b4c502013-04-05 13:47:09 +0000277 , fSeed(seed)
halcanary96fcdcc2015-08-27 07:41:13 -0700278 , fTileSize(nullptr == tileSize ? SkISize::Make(0, 0) : *tileSize)
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +0000279 , fStitchTiles(!fTileSize.isEmpty())
sugoi@google.come3b4c502013-04-05 13:47:09 +0000280{
281 SkASSERT(numOctaves >= 0 && numOctaves < 256);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000282}
283
sugoi@google.come3b4c502013-04-05 13:47:09 +0000284SkPerlinNoiseShader::~SkPerlinNoiseShader() {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000285}
286
reed9fa60da2014-08-21 07:59:51 -0700287SkFlattenable* SkPerlinNoiseShader::CreateProc(SkReadBuffer& buffer) {
288 Type type = (Type)buffer.readInt();
289 SkScalar freqX = buffer.readScalar();
290 SkScalar freqY = buffer.readScalar();
291 int octaves = buffer.readInt();
292 SkScalar seed = buffer.readScalar();
293 SkISize tileSize;
294 tileSize.fWidth = buffer.readInt();
295 tileSize.fHeight = buffer.readInt();
296
297 switch (type) {
298 case kFractalNoise_Type:
299 return SkPerlinNoiseShader::CreateFractalNoise(freqX, freqY, octaves, seed, &tileSize);
300 case kTurbulence_Type:
301 return SkPerlinNoiseShader::CreateTubulence(freqX, freqY, octaves, seed, &tileSize);
302 default:
halcanary96fcdcc2015-08-27 07:41:13 -0700303 return nullptr;
reed9fa60da2014-08-21 07:59:51 -0700304 }
305}
306
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +0000307void SkPerlinNoiseShader::flatten(SkWriteBuffer& buffer) const {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000308 buffer.writeInt((int) fType);
309 buffer.writeScalar(fBaseFrequencyX);
310 buffer.writeScalar(fBaseFrequencyY);
311 buffer.writeInt(fNumOctaves);
312 buffer.writeScalar(fSeed);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000313 buffer.writeInt(fTileSize.fWidth);
314 buffer.writeInt(fTileSize.fHeight);
315}
316
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000317SkScalar SkPerlinNoiseShader::PerlinNoiseShaderContext::noise2D(
senorblancoca6a7c22014-06-27 13:35:52 -0700318 int channel, const StitchData& stitchData, const SkPoint& noiseVector) const {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000319 struct Noise {
320 int noisePositionIntegerValue;
senorblancoce6a3542014-06-12 11:24:19 -0700321 int nextNoisePositionIntegerValue;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000322 SkScalar noisePositionFractionValue;
323 Noise(SkScalar component)
324 {
325 SkScalar position = component + kPerlinNoise;
326 noisePositionIntegerValue = SkScalarFloorToInt(position);
327 noisePositionFractionValue = position - SkIntToScalar(noisePositionIntegerValue);
senorblancoce6a3542014-06-12 11:24:19 -0700328 nextNoisePositionIntegerValue = noisePositionIntegerValue + 1;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000329 }
330 };
331 Noise noiseX(noiseVector.x());
332 Noise noiseY(noiseVector.y());
333 SkScalar u, v;
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000334 const SkPerlinNoiseShader& perlinNoiseShader = static_cast<const SkPerlinNoiseShader&>(fShader);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000335 // If stitching, adjust lattice points accordingly.
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000336 if (perlinNoiseShader.fStitchTiles) {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000337 noiseX.noisePositionIntegerValue =
338 checkNoise(noiseX.noisePositionIntegerValue, stitchData.fWrapX, stitchData.fWidth);
339 noiseY.noisePositionIntegerValue =
340 checkNoise(noiseY.noisePositionIntegerValue, stitchData.fWrapY, stitchData.fHeight);
senorblancoce6a3542014-06-12 11:24:19 -0700341 noiseX.nextNoisePositionIntegerValue =
342 checkNoise(noiseX.nextNoisePositionIntegerValue, stitchData.fWrapX, stitchData.fWidth);
343 noiseY.nextNoisePositionIntegerValue =
344 checkNoise(noiseY.nextNoisePositionIntegerValue, stitchData.fWrapY, stitchData.fHeight);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000345 }
346 noiseX.noisePositionIntegerValue &= kBlockMask;
347 noiseY.noisePositionIntegerValue &= kBlockMask;
senorblancoce6a3542014-06-12 11:24:19 -0700348 noiseX.nextNoisePositionIntegerValue &= kBlockMask;
349 noiseY.nextNoisePositionIntegerValue &= kBlockMask;
350 int i =
senorblancoca6a7c22014-06-27 13:35:52 -0700351 fPaintingData->fLatticeSelector[noiseX.noisePositionIntegerValue];
senorblancoce6a3542014-06-12 11:24:19 -0700352 int j =
senorblancoca6a7c22014-06-27 13:35:52 -0700353 fPaintingData->fLatticeSelector[noiseX.nextNoisePositionIntegerValue];
senorblancoce6a3542014-06-12 11:24:19 -0700354 int b00 = (i + noiseY.noisePositionIntegerValue) & kBlockMask;
355 int b10 = (j + noiseY.noisePositionIntegerValue) & kBlockMask;
356 int b01 = (i + noiseY.nextNoisePositionIntegerValue) & kBlockMask;
357 int b11 = (j + noiseY.nextNoisePositionIntegerValue) & kBlockMask;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000358 SkScalar sx = smoothCurve(noiseX.noisePositionFractionValue);
359 SkScalar sy = smoothCurve(noiseY.noisePositionFractionValue);
360 // This is taken 1:1 from SVG spec: http://www.w3.org/TR/SVG11/filters.html#feTurbulenceElement
361 SkPoint fractionValue = SkPoint::Make(noiseX.noisePositionFractionValue,
362 noiseY.noisePositionFractionValue); // Offset (0,0)
senorblancoca6a7c22014-06-27 13:35:52 -0700363 u = fPaintingData->fGradient[channel][b00].dot(fractionValue);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000364 fractionValue.fX -= SK_Scalar1; // Offset (-1,0)
senorblancoca6a7c22014-06-27 13:35:52 -0700365 v = fPaintingData->fGradient[channel][b10].dot(fractionValue);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000366 SkScalar a = SkScalarInterp(u, v, sx);
367 fractionValue.fY -= SK_Scalar1; // Offset (-1,-1)
senorblancoca6a7c22014-06-27 13:35:52 -0700368 v = fPaintingData->fGradient[channel][b11].dot(fractionValue);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000369 fractionValue.fX = noiseX.noisePositionFractionValue; // Offset (0,-1)
senorblancoca6a7c22014-06-27 13:35:52 -0700370 u = fPaintingData->fGradient[channel][b01].dot(fractionValue);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000371 SkScalar b = SkScalarInterp(u, v, sx);
372 return SkScalarInterp(a, b, sy);
373}
374
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000375SkScalar SkPerlinNoiseShader::PerlinNoiseShaderContext::calculateTurbulenceValueForPoint(
senorblancoca6a7c22014-06-27 13:35:52 -0700376 int channel, StitchData& stitchData, const SkPoint& point) const {
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000377 const SkPerlinNoiseShader& perlinNoiseShader = static_cast<const SkPerlinNoiseShader&>(fShader);
378 if (perlinNoiseShader.fStitchTiles) {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000379 // Set up TurbulenceInitial stitch values.
senorblancoca6a7c22014-06-27 13:35:52 -0700380 stitchData = fPaintingData->fStitchDataInit;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000381 }
382 SkScalar turbulenceFunctionResult = 0;
senorblancoca6a7c22014-06-27 13:35:52 -0700383 SkPoint noiseVector(SkPoint::Make(SkScalarMul(point.x(), fPaintingData->fBaseFrequency.fX),
384 SkScalarMul(point.y(), fPaintingData->fBaseFrequency.fY)));
sugoi@google.come3b4c502013-04-05 13:47:09 +0000385 SkScalar ratio = SK_Scalar1;
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000386 for (int octave = 0; octave < perlinNoiseShader.fNumOctaves; ++octave) {
senorblancoca6a7c22014-06-27 13:35:52 -0700387 SkScalar noise = noise2D(channel, stitchData, noiseVector);
reed80ea19c2015-05-12 10:37:34 -0700388 SkScalar numer = (perlinNoiseShader.fType == kFractalNoise_Type) ?
389 noise : SkScalarAbs(noise);
390 turbulenceFunctionResult += numer / ratio;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000391 noiseVector.fX *= 2;
392 noiseVector.fY *= 2;
393 ratio *= 2;
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000394 if (perlinNoiseShader.fStitchTiles) {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000395 // Update stitch values
396 stitchData.fWidth *= 2;
397 stitchData.fWrapX = stitchData.fWidth + kPerlinNoise;
398 stitchData.fHeight *= 2;
399 stitchData.fWrapY = stitchData.fHeight + kPerlinNoise;
400 }
401 }
402
403 // The value of turbulenceFunctionResult comes from ((turbulenceFunctionResult) + 1) / 2
404 // by fractalNoise and (turbulenceFunctionResult) by turbulence.
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000405 if (perlinNoiseShader.fType == kFractalNoise_Type) {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000406 turbulenceFunctionResult =
407 SkScalarMul(turbulenceFunctionResult, SK_ScalarHalf) + SK_ScalarHalf;
408 }
409
410 if (channel == 3) { // Scale alpha by paint value
reed80ea19c2015-05-12 10:37:34 -0700411 turbulenceFunctionResult *= SkIntToScalar(getPaintAlpha()) / 255;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000412 }
413
414 // Clamp result
415 return SkScalarPin(turbulenceFunctionResult, 0, SK_Scalar1);
416}
417
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000418SkPMColor SkPerlinNoiseShader::PerlinNoiseShaderContext::shade(
419 const SkPoint& point, StitchData& stitchData) const {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000420 SkPoint newPoint;
senorblanco@chromium.orga8d95f82014-04-04 14:46:10 +0000421 fMatrix.mapPoints(&newPoint, &point, 1);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000422 newPoint.fX = SkScalarRoundToScalar(newPoint.fX);
423 newPoint.fY = SkScalarRoundToScalar(newPoint.fY);
424
425 U8CPU rgba[4];
426 for (int channel = 3; channel >= 0; --channel) {
427 rgba[channel] = SkScalarFloorToInt(255 *
senorblancoca6a7c22014-06-27 13:35:52 -0700428 calculateTurbulenceValueForPoint(channel, stitchData, newPoint));
sugoi@google.come3b4c502013-04-05 13:47:09 +0000429 }
430 return SkPreMultiplyARGB(rgba[3], rgba[0], rgba[1], rgba[2]);
431}
432
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000433SkShader::Context* SkPerlinNoiseShader::onCreateContext(const ContextRec& rec,
434 void* storage) const {
halcanary385fe4d2015-08-26 13:07:48 -0700435 return new (storage) PerlinNoiseShaderContext(*this, rec);
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000436}
437
438size_t SkPerlinNoiseShader::contextSize() const {
439 return sizeof(PerlinNoiseShaderContext);
440}
441
442SkPerlinNoiseShader::PerlinNoiseShaderContext::PerlinNoiseShaderContext(
commit-bot@chromium.orge901b6d2014-05-01 19:31:31 +0000443 const SkPerlinNoiseShader& shader, const ContextRec& rec)
444 : INHERITED(shader, rec)
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000445{
commit-bot@chromium.orge901b6d2014-05-01 19:31:31 +0000446 SkMatrix newMatrix = *rec.fMatrix;
reed@google.comb67b8e62014-05-12 18:12:24 +0000447 newMatrix.preConcat(shader.getLocalMatrix());
448 if (rec.fLocalMatrix) {
449 newMatrix.preConcat(*rec.fLocalMatrix);
450 }
senorblanco@chromium.orga8d95f82014-04-04 14:46:10 +0000451 // This (1,1) translation is due to WebKit's 1 based coordinates for the noise
452 // (as opposed to 0 based, usually). The same adjustment is in the setData() function.
senorblancoca6a7c22014-06-27 13:35:52 -0700453 fMatrix.setTranslate(-newMatrix.getTranslateX() + SK_Scalar1, -newMatrix.getTranslateY() + SK_Scalar1);
halcanary385fe4d2015-08-26 13:07:48 -0700454 fPaintingData = new PaintingData(shader.fTileSize, shader.fSeed, shader.fBaseFrequencyX,
455 shader.fBaseFrequencyY, newMatrix);
senorblancoca6a7c22014-06-27 13:35:52 -0700456}
457
halcanary385fe4d2015-08-26 13:07:48 -0700458SkPerlinNoiseShader::PerlinNoiseShaderContext::~PerlinNoiseShaderContext() { delete fPaintingData; }
sugoi@google.come3b4c502013-04-05 13:47:09 +0000459
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000460void SkPerlinNoiseShader::PerlinNoiseShaderContext::shadeSpan(
461 int x, int y, SkPMColor result[], int count) {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000462 SkPoint point = SkPoint::Make(SkIntToScalar(x), SkIntToScalar(y));
463 StitchData stitchData;
464 for (int i = 0; i < count; ++i) {
465 result[i] = shade(point, stitchData);
466 point.fX += SK_Scalar1;
467 }
468}
469
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000470void SkPerlinNoiseShader::PerlinNoiseShaderContext::shadeSpan16(
471 int x, int y, uint16_t result[], int count) {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000472 SkPoint point = SkPoint::Make(SkIntToScalar(x), SkIntToScalar(y));
473 StitchData stitchData;
474 DITHER_565_SCAN(y);
475 for (int i = 0; i < count; ++i) {
476 unsigned dither = DITHER_VALUE(x);
477 result[i] = SkDitherRGB32To565(shade(point, stitchData), dither);
478 DITHER_INC_X(x);
479 point.fX += SK_Scalar1;
480 }
481}
482
483/////////////////////////////////////////////////////////////////////
484
commit-bot@chromium.org344cf452013-06-17 14:19:01 +0000485#if SK_SUPPORT_GPU
sugoi@google.come3b4c502013-04-05 13:47:09 +0000486
egdaniel64c47282015-11-13 06:54:19 -0800487class GrGLPerlinNoise : public GrGLSLFragmentProcessor {
sugoi@google.com4775cba2013-04-17 13:46:56 +0000488public:
joshualitteb2a6762014-12-04 11:35:33 -0800489 GrGLPerlinNoise(const GrProcessor&);
sugoi@google.com4775cba2013-04-17 13:46:56 +0000490 virtual ~GrGLPerlinNoise() {}
sugoi@google.come3b4c502013-04-05 13:47:09 +0000491
wangyix7c157a92015-07-22 15:08:53 -0700492 virtual void emitCode(EmitArgs&) override;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000493
jvanverthcfc18862015-04-28 08:48:20 -0700494 static inline void GenKey(const GrProcessor&, const GrGLSLCaps&, GrProcessorKeyBuilder* b);
sugoi@google.com4775cba2013-04-17 13:46:56 +0000495
wangyixb1daa862015-08-18 11:29:31 -0700496protected:
egdaniel018fb622015-10-28 07:26:40 -0700497 void onSetData(const GrGLSLProgramDataManager&, const GrProcessor&) override;
wangyixb1daa862015-08-18 11:29:31 -0700498
sugoi@google.com4775cba2013-04-17 13:46:56 +0000499private:
sugoi@google.com4775cba2013-04-17 13:46:56 +0000500
egdaniel018fb622015-10-28 07:26:40 -0700501 GrGLSLProgramDataManager::UniformHandle fStitchDataUni;
502 SkPerlinNoiseShader::Type fType;
503 bool fStitchTiles;
504 int fNumOctaves;
505 GrGLSLProgramDataManager::UniformHandle fBaseFrequencyUni;
senorblancof3b50272014-06-16 10:49:58 -0700506
507private:
egdaniel64c47282015-11-13 06:54:19 -0800508 typedef GrGLSLFragmentProcessor INHERITED;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000509};
510
511/////////////////////////////////////////////////////////////////////
512
joshualittb0a8a372014-09-23 09:50:21 -0700513class GrPerlinNoiseEffect : public GrFragmentProcessor {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000514public:
bsalomon4a339522015-10-06 08:40:50 -0700515 static GrFragmentProcessor* Create(SkPerlinNoiseShader::Type type,
joshualittb0a8a372014-09-23 09:50:21 -0700516 int numOctaves, bool stitchTiles,
517 SkPerlinNoiseShader::PaintingData* paintingData,
518 GrTexture* permutationsTexture, GrTexture* noiseTexture,
bsalomonc21b09e2015-08-28 18:46:56 -0700519 const SkMatrix& matrix) {
bsalomon4a339522015-10-06 08:40:50 -0700520 return new GrPerlinNoiseEffect(type, numOctaves, stitchTiles, paintingData,
bsalomonc21b09e2015-08-28 18:46:56 -0700521 permutationsTexture, noiseTexture, matrix);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000522 }
523
halcanary385fe4d2015-08-26 13:07:48 -0700524 virtual ~GrPerlinNoiseEffect() { delete fPaintingData; }
sugoi@google.come3b4c502013-04-05 13:47:09 +0000525
mtklein36352bf2015-03-25 18:17:31 -0700526 const char* name() const override { return "PerlinNoise"; }
joshualitteb2a6762014-12-04 11:35:33 -0800527
senorblancoca6a7c22014-06-27 13:35:52 -0700528 const SkPerlinNoiseShader::StitchData& stitchData() const { return fPaintingData->fStitchDataInit; }
sugoi@google.come3b4c502013-04-05 13:47:09 +0000529
senorblancof3b50272014-06-16 10:49:58 -0700530 SkPerlinNoiseShader::Type type() const { return fType; }
531 bool stitchTiles() const { return fStitchTiles; }
senorblancoca6a7c22014-06-27 13:35:52 -0700532 const SkVector& baseFrequency() const { return fPaintingData->fBaseFrequency; }
senorblancof3b50272014-06-16 10:49:58 -0700533 int numOctaves() const { return fNumOctaves; }
534 const SkMatrix& matrix() const { return fCoordTransform.getMatrix(); }
senorblancof3b50272014-06-16 10:49:58 -0700535
sugoi@google.come3b4c502013-04-05 13:47:09 +0000536private:
egdaniel57d3b032015-11-13 11:57:27 -0800537 GrGLSLFragmentProcessor* onCreateGLSLInstance() const override {
halcanary385fe4d2015-08-26 13:07:48 -0700538 return new GrGLPerlinNoise(*this);
wangyixb1daa862015-08-18 11:29:31 -0700539 }
540
egdaniel57d3b032015-11-13 11:57:27 -0800541 virtual void onGetGLSLProcessorKey(const GrGLSLCaps& caps,
542 GrProcessorKeyBuilder* b) const override {
wangyix4b3050b2015-08-04 07:59:37 -0700543 GrGLPerlinNoise::GenKey(*this, caps, b);
544 }
545
mtklein36352bf2015-03-25 18:17:31 -0700546 bool onIsEqual(const GrFragmentProcessor& sBase) const override {
joshualitt49586be2014-09-16 08:21:41 -0700547 const GrPerlinNoiseEffect& s = sBase.cast<GrPerlinNoiseEffect>();
senorblancof3b50272014-06-16 10:49:58 -0700548 return fType == s.fType &&
senorblancoca6a7c22014-06-27 13:35:52 -0700549 fPaintingData->fBaseFrequency == s.fPaintingData->fBaseFrequency &&
senorblancof3b50272014-06-16 10:49:58 -0700550 fNumOctaves == s.fNumOctaves &&
551 fStitchTiles == s.fStitchTiles &&
senorblancoca6a7c22014-06-27 13:35:52 -0700552 fPaintingData->fStitchDataInit == s.fPaintingData->fStitchDataInit;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000553 }
554
mtklein36352bf2015-03-25 18:17:31 -0700555 void onComputeInvariantOutput(GrInvariantOutput* inout) const override {
egdaniel605dd0f2014-11-12 08:35:25 -0800556 inout->setToUnknown(GrInvariantOutput::kWillNot_ReadInput);
egdaniel1a8ecdf2014-10-03 06:24:12 -0700557 }
558
bsalomon4a339522015-10-06 08:40:50 -0700559 GrPerlinNoiseEffect(SkPerlinNoiseShader::Type type,
sugoi@google.come3b4c502013-04-05 13:47:09 +0000560 int numOctaves, bool stitchTiles,
senorblancoca6a7c22014-06-27 13:35:52 -0700561 SkPerlinNoiseShader::PaintingData* paintingData,
sugoi@google.come3b4c502013-04-05 13:47:09 +0000562 GrTexture* permutationsTexture, GrTexture* noiseTexture,
bsalomonc21b09e2015-08-28 18:46:56 -0700563 const SkMatrix& matrix)
senorblancof3b50272014-06-16 10:49:58 -0700564 : fType(type)
senorblancof3b50272014-06-16 10:49:58 -0700565 , fNumOctaves(numOctaves)
566 , fStitchTiles(stitchTiles)
sugoi@google.com4775cba2013-04-17 13:46:56 +0000567 , fPermutationsAccess(permutationsTexture)
sugoi@google.come3b4c502013-04-05 13:47:09 +0000568 , fNoiseAccess(noiseTexture)
senorblancoca6a7c22014-06-27 13:35:52 -0700569 , fPaintingData(paintingData) {
joshualitteb2a6762014-12-04 11:35:33 -0800570 this->initClassID<GrPerlinNoiseEffect>();
sugoi@google.come3b4c502013-04-05 13:47:09 +0000571 this->addTextureAccess(&fPermutationsAccess);
572 this->addTextureAccess(&fNoiseAccess);
senorblancoca6a7c22014-06-27 13:35:52 -0700573 fCoordTransform.reset(kLocal_GrCoordSet, matrix);
senorblancof3b50272014-06-16 10:49:58 -0700574 this->addCoordTransform(&fCoordTransform);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000575 }
576
joshualittb0a8a372014-09-23 09:50:21 -0700577 GR_DECLARE_FRAGMENT_PROCESSOR_TEST;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000578
senorblancof3b50272014-06-16 10:49:58 -0700579 SkPerlinNoiseShader::Type fType;
580 GrCoordTransform fCoordTransform;
senorblancof3b50272014-06-16 10:49:58 -0700581 int fNumOctaves;
582 bool fStitchTiles;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000583 GrTextureAccess fPermutationsAccess;
584 GrTextureAccess fNoiseAccess;
senorblancoca6a7c22014-06-27 13:35:52 -0700585 SkPerlinNoiseShader::PaintingData *fPaintingData;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000586
sugoi@google.com4775cba2013-04-17 13:46:56 +0000587private:
joshualittb0a8a372014-09-23 09:50:21 -0700588 typedef GrFragmentProcessor INHERITED;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000589};
590
591/////////////////////////////////////////////////////////////////////
joshualittb0a8a372014-09-23 09:50:21 -0700592GR_DEFINE_FRAGMENT_PROCESSOR_TEST(GrPerlinNoiseEffect);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000593
bsalomonc21b09e2015-08-28 18:46:56 -0700594const GrFragmentProcessor* GrPerlinNoiseEffect::TestCreate(GrProcessorTestData* d) {
joshualitt0067ff52015-07-08 14:26:19 -0700595 int numOctaves = d->fRandom->nextRangeU(2, 10);
596 bool stitchTiles = d->fRandom->nextBool();
597 SkScalar seed = SkIntToScalar(d->fRandom->nextU());
598 SkISize tileSize = SkISize::Make(d->fRandom->nextRangeU(4, 4096),
599 d->fRandom->nextRangeU(4, 4096));
600 SkScalar baseFrequencyX = d->fRandom->nextRangeScalar(0.01f,
601 0.99f);
602 SkScalar baseFrequencyY = d->fRandom->nextRangeScalar(0.01f,
603 0.99f);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000604
bsalomon6d2a2032015-08-29 06:27:29 -0700605 SkAutoTUnref<SkShader> shader(d->fRandom->nextBool() ?
sugoi@google.come3b4c502013-04-05 13:47:09 +0000606 SkPerlinNoiseShader::CreateFractalNoise(baseFrequencyX, baseFrequencyY, numOctaves, seed,
halcanary96fcdcc2015-08-27 07:41:13 -0700607 stitchTiles ? &tileSize : nullptr) :
commit-bot@chromium.org9fbbcca2014-04-01 16:09:37 +0000608 SkPerlinNoiseShader::CreateTurbulence(baseFrequencyX, baseFrequencyY, numOctaves, seed,
bsalomon6d2a2032015-08-29 06:27:29 -0700609 stitchTiles ? &tileSize : nullptr));
sugoi@google.come3b4c502013-04-05 13:47:09 +0000610
bsalomonc21b09e2015-08-28 18:46:56 -0700611 return shader->asFragmentProcessor(d->fContext,
612 GrTest::TestMatrix(d->fRandom), nullptr,
bsalomon4a339522015-10-06 08:40:50 -0700613 kNone_SkFilterQuality);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000614}
sugoi@google.com4775cba2013-04-17 13:46:56 +0000615
joshualitteb2a6762014-12-04 11:35:33 -0800616GrGLPerlinNoise::GrGLPerlinNoise(const GrProcessor& processor)
617 : fType(processor.cast<GrPerlinNoiseEffect>().type())
joshualittb0a8a372014-09-23 09:50:21 -0700618 , fStitchTiles(processor.cast<GrPerlinNoiseEffect>().stitchTiles())
619 , fNumOctaves(processor.cast<GrPerlinNoiseEffect>().numOctaves()) {
sugoi@google.com4775cba2013-04-17 13:46:56 +0000620}
621
wangyix7c157a92015-07-22 15:08:53 -0700622void GrGLPerlinNoise::emitCode(EmitArgs& args) {
egdaniel4ca2e602015-11-18 08:01:26 -0800623 GrGLSLFragmentBuilder* fragBuilder = args.fFragBuilder;
624 SkString vCoords = fragBuilder->ensureFSCoords2D(args.fCoords, 0);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000625
egdaniel2d721d32015-11-11 13:06:05 -0800626 fBaseFrequencyUni = args.fBuilder->addUniform(GrGLSLProgramBuilder::kFragment_Visibility,
egdaniel4ca2e602015-11-18 08:01:26 -0800627 kVec2f_GrSLType, kDefault_GrSLPrecision,
628 "baseFrequency");
wangyix7c157a92015-07-22 15:08:53 -0700629 const char* baseFrequencyUni = args.fBuilder->getUniformCStr(fBaseFrequencyUni);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000630
halcanary96fcdcc2015-08-27 07:41:13 -0700631 const char* stitchDataUni = nullptr;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000632 if (fStitchTiles) {
egdaniel2d721d32015-11-11 13:06:05 -0800633 fStitchDataUni = args.fBuilder->addUniform(GrGLSLProgramBuilder::kFragment_Visibility,
egdaniel4ca2e602015-11-18 08:01:26 -0800634 kVec2f_GrSLType, kDefault_GrSLPrecision,
635 "stitchData");
wangyix7c157a92015-07-22 15:08:53 -0700636 stitchDataUni = args.fBuilder->getUniformCStr(fStitchDataUni);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000637 }
638
sugoi@google.comd537af52013-06-10 13:59:25 +0000639 // There are 4 lines, so the center of each line is 1/8, 3/8, 5/8 and 7/8
640 const char* chanCoordR = "0.125";
641 const char* chanCoordG = "0.375";
642 const char* chanCoordB = "0.625";
643 const char* chanCoordA = "0.875";
644 const char* chanCoord = "chanCoord";
sugoi@google.come3b4c502013-04-05 13:47:09 +0000645 const char* stitchData = "stitchData";
646 const char* ratio = "ratio";
sugoi@google.come3b4c502013-04-05 13:47:09 +0000647 const char* noiseVec = "noiseVec";
sugoi@google.come3b4c502013-04-05 13:47:09 +0000648 const char* noiseSmooth = "noiseSmooth";
senorblancoce6a3542014-06-12 11:24:19 -0700649 const char* floorVal = "floorVal";
sugoi@google.come3b4c502013-04-05 13:47:09 +0000650 const char* fractVal = "fractVal";
651 const char* uv = "uv";
652 const char* ab = "ab";
653 const char* latticeIdx = "latticeIdx";
senorblancoce6a3542014-06-12 11:24:19 -0700654 const char* bcoords = "bcoords";
sugoi@google.come3b4c502013-04-05 13:47:09 +0000655 const char* lattice = "lattice";
sugoi@google.come3b4c502013-04-05 13:47:09 +0000656 const char* inc8bit = "0.00390625"; // 1.0 / 256.0
657 // This is the math to convert the two 16bit integer packed into rgba 8 bit input into a
658 // [-1,1] vector and perform a dot product between that vector and the provided vector.
659 const char* dotLattice = "dot(((%s.ga + %s.rb * vec2(%s)) * vec2(2.0) - vec2(1.0)), %s);";
660
sugoi@google.comd537af52013-06-10 13:59:25 +0000661 // Add noise function
egdaniel0d3f0612015-10-21 10:45:48 -0700662 static const GrGLSLShaderVar gPerlinNoiseArgs[] = {
663 GrGLSLShaderVar(chanCoord, kFloat_GrSLType),
664 GrGLSLShaderVar(noiseVec, kVec2f_GrSLType)
sugoi@google.comd537af52013-06-10 13:59:25 +0000665 };
sugoi@google.come3b4c502013-04-05 13:47:09 +0000666
egdaniel0d3f0612015-10-21 10:45:48 -0700667 static const GrGLSLShaderVar gPerlinNoiseStitchArgs[] = {
668 GrGLSLShaderVar(chanCoord, kFloat_GrSLType),
669 GrGLSLShaderVar(noiseVec, kVec2f_GrSLType),
670 GrGLSLShaderVar(stitchData, kVec2f_GrSLType)
sugoi@google.comd537af52013-06-10 13:59:25 +0000671 };
sugoi@google.come3b4c502013-04-05 13:47:09 +0000672
sugoi@google.comd537af52013-06-10 13:59:25 +0000673 SkString noiseCode;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000674
senorblancoce6a3542014-06-12 11:24:19 -0700675 noiseCode.appendf("\tvec4 %s;\n", floorVal);
676 noiseCode.appendf("\t%s.xy = floor(%s);\n", floorVal, noiseVec);
677 noiseCode.appendf("\t%s.zw = %s.xy + vec2(1.0);\n", floorVal, floorVal);
678 noiseCode.appendf("\tvec2 %s = fract(%s);\n", fractVal, noiseVec);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000679
680 // smooth curve : t * t * (3 - 2 * t)
senorblancoce6a3542014-06-12 11:24:19 -0700681 noiseCode.appendf("\n\tvec2 %s = %s * %s * (vec2(3.0) - vec2(2.0) * %s);",
682 noiseSmooth, fractVal, fractVal, fractVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000683
684 // Adjust frequencies if we're stitching tiles
685 if (fStitchTiles) {
commit-bot@chromium.org98393202013-07-04 18:13:05 +0000686 noiseCode.appendf("\n\tif(%s.x >= %s.x) { %s.x -= %s.x; }",
egdaniel4ca2e602015-11-18 08:01:26 -0800687 floorVal, stitchData, floorVal, stitchData);
commit-bot@chromium.org98393202013-07-04 18:13:05 +0000688 noiseCode.appendf("\n\tif(%s.y >= %s.y) { %s.y -= %s.y; }",
egdaniel4ca2e602015-11-18 08:01:26 -0800689 floorVal, stitchData, floorVal, stitchData);
senorblancoce6a3542014-06-12 11:24:19 -0700690 noiseCode.appendf("\n\tif(%s.z >= %s.x) { %s.z -= %s.x; }",
egdaniel4ca2e602015-11-18 08:01:26 -0800691 floorVal, stitchData, floorVal, stitchData);
senorblancoce6a3542014-06-12 11:24:19 -0700692 noiseCode.appendf("\n\tif(%s.w >= %s.y) { %s.w -= %s.y; }",
egdaniel4ca2e602015-11-18 08:01:26 -0800693 floorVal, stitchData, floorVal, stitchData);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000694 }
695
696 // Get texture coordinates and normalize
senorblancoce6a3542014-06-12 11:24:19 -0700697 noiseCode.appendf("\n\t%s = fract(floor(mod(%s, 256.0)) / vec4(256.0));\n",
egdaniel4ca2e602015-11-18 08:01:26 -0800698 floorVal, floorVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000699
700 // Get permutation for x
701 {
702 SkString xCoords("");
senorblancoce6a3542014-06-12 11:24:19 -0700703 xCoords.appendf("vec2(%s.x, 0.5)", floorVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000704
sugoi@google.comd537af52013-06-10 13:59:25 +0000705 noiseCode.appendf("\n\tvec2 %s;\n\t%s.x = ", latticeIdx, latticeIdx);
egdaniel4ca2e602015-11-18 08:01:26 -0800706 fragBuilder->appendTextureLookup(&noiseCode, args.fSamplers[0], xCoords.c_str(),
707 kVec2f_GrSLType);
sugoi@google.comd537af52013-06-10 13:59:25 +0000708 noiseCode.append(".r;");
sugoi@google.come3b4c502013-04-05 13:47:09 +0000709 }
710
711 // Get permutation for x + 1
712 {
713 SkString xCoords("");
senorblancoce6a3542014-06-12 11:24:19 -0700714 xCoords.appendf("vec2(%s.z, 0.5)", floorVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000715
sugoi@google.comd537af52013-06-10 13:59:25 +0000716 noiseCode.appendf("\n\t%s.y = ", latticeIdx);
egdaniel4ca2e602015-11-18 08:01:26 -0800717 fragBuilder->appendTextureLookup(&noiseCode, args.fSamplers[0], xCoords.c_str(),
718 kVec2f_GrSLType);
sugoi@google.comd537af52013-06-10 13:59:25 +0000719 noiseCode.append(".r;");
sugoi@google.come3b4c502013-04-05 13:47:09 +0000720 }
721
commit-bot@chromium.org344cf452013-06-17 14:19:01 +0000722#if defined(SK_BUILD_FOR_ANDROID)
723 // Android rounding for Tegra devices, like, for example: Xoom (Tegra 2), Nexus 7 (Tegra 3).
724 // The issue is that colors aren't accurate enough on Tegra devices. For example, if an 8 bit
725 // value of 124 (or 0.486275 here) is entered, we can get a texture value of 123.513725
726 // (or 0.484368 here). The following rounding operation prevents these precision issues from
727 // affecting the result of the noise by making sure that we only have multiples of 1/255.
728 // (Note that 1/255 is about 0.003921569, which is the value used here).
729 noiseCode.appendf("\n\t%s = floor(%s * vec2(255.0) + vec2(0.5)) * vec2(0.003921569);",
730 latticeIdx, latticeIdx);
731#endif
732
sugoi@google.come3b4c502013-04-05 13:47:09 +0000733 // Get (x,y) coordinates with the permutated x
senorblancoce6a3542014-06-12 11:24:19 -0700734 noiseCode.appendf("\n\tvec4 %s = fract(%s.xyxy + %s.yyww);", bcoords, latticeIdx, floorVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000735
sugoi@google.comd537af52013-06-10 13:59:25 +0000736 noiseCode.appendf("\n\n\tvec2 %s;", uv);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000737 // Compute u, at offset (0,0)
738 {
739 SkString latticeCoords("");
senorblancoce6a3542014-06-12 11:24:19 -0700740 latticeCoords.appendf("vec2(%s.x, %s)", bcoords, chanCoord);
sugoi@google.comd537af52013-06-10 13:59:25 +0000741 noiseCode.appendf("\n\tvec4 %s = ", lattice);
egdaniel4ca2e602015-11-18 08:01:26 -0800742 fragBuilder->appendTextureLookup(&noiseCode, args.fSamplers[1], latticeCoords.c_str(),
743 kVec2f_GrSLType);
sugoi@google.comd537af52013-06-10 13:59:25 +0000744 noiseCode.appendf(".bgra;\n\t%s.x = ", uv);
745 noiseCode.appendf(dotLattice, lattice, lattice, inc8bit, fractVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000746 }
747
sugoi@google.comd537af52013-06-10 13:59:25 +0000748 noiseCode.appendf("\n\t%s.x -= 1.0;", fractVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000749 // Compute v, at offset (-1,0)
750 {
751 SkString latticeCoords("");
senorblancoce6a3542014-06-12 11:24:19 -0700752 latticeCoords.appendf("vec2(%s.y, %s)", bcoords, chanCoord);
commit-bot@chromium.org344cf452013-06-17 14:19:01 +0000753 noiseCode.append("\n\tlattice = ");
egdaniel4ca2e602015-11-18 08:01:26 -0800754 fragBuilder->appendTextureLookup(&noiseCode, args.fSamplers[1], latticeCoords.c_str(),
755 kVec2f_GrSLType);
sugoi@google.comd537af52013-06-10 13:59:25 +0000756 noiseCode.appendf(".bgra;\n\t%s.y = ", uv);
757 noiseCode.appendf(dotLattice, lattice, lattice, inc8bit, fractVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000758 }
759
760 // Compute 'a' as a linear interpolation of 'u' and 'v'
sugoi@google.comd537af52013-06-10 13:59:25 +0000761 noiseCode.appendf("\n\tvec2 %s;", ab);
762 noiseCode.appendf("\n\t%s.x = mix(%s.x, %s.y, %s.x);", ab, uv, uv, noiseSmooth);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000763
sugoi@google.comd537af52013-06-10 13:59:25 +0000764 noiseCode.appendf("\n\t%s.y -= 1.0;", fractVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000765 // Compute v, at offset (-1,-1)
766 {
767 SkString latticeCoords("");
senorblancoce6a3542014-06-12 11:24:19 -0700768 latticeCoords.appendf("vec2(%s.w, %s)", bcoords, chanCoord);
commit-bot@chromium.org344cf452013-06-17 14:19:01 +0000769 noiseCode.append("\n\tlattice = ");
egdaniel4ca2e602015-11-18 08:01:26 -0800770 fragBuilder->appendTextureLookup(&noiseCode, args.fSamplers[1], latticeCoords.c_str(),
771 kVec2f_GrSLType);
sugoi@google.comd537af52013-06-10 13:59:25 +0000772 noiseCode.appendf(".bgra;\n\t%s.y = ", uv);
773 noiseCode.appendf(dotLattice, lattice, lattice, inc8bit, fractVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000774 }
775
sugoi@google.comd537af52013-06-10 13:59:25 +0000776 noiseCode.appendf("\n\t%s.x += 1.0;", fractVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000777 // Compute u, at offset (0,-1)
778 {
779 SkString latticeCoords("");
senorblancoce6a3542014-06-12 11:24:19 -0700780 latticeCoords.appendf("vec2(%s.z, %s)", bcoords, chanCoord);
commit-bot@chromium.org344cf452013-06-17 14:19:01 +0000781 noiseCode.append("\n\tlattice = ");
egdaniel4ca2e602015-11-18 08:01:26 -0800782 fragBuilder->appendTextureLookup(&noiseCode, args.fSamplers[1], latticeCoords.c_str(),
783 kVec2f_GrSLType);
sugoi@google.comd537af52013-06-10 13:59:25 +0000784 noiseCode.appendf(".bgra;\n\t%s.x = ", uv);
785 noiseCode.appendf(dotLattice, lattice, lattice, inc8bit, fractVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000786 }
787
788 // Compute 'b' as a linear interpolation of 'u' and 'v'
sugoi@google.comd537af52013-06-10 13:59:25 +0000789 noiseCode.appendf("\n\t%s.y = mix(%s.x, %s.y, %s.x);", ab, uv, uv, noiseSmooth);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000790 // Compute the noise as a linear interpolation of 'a' and 'b'
sugoi@google.comd537af52013-06-10 13:59:25 +0000791 noiseCode.appendf("\n\treturn mix(%s.x, %s.y, %s.y);\n", ab, ab, noiseSmooth);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000792
sugoi@google.comd537af52013-06-10 13:59:25 +0000793 SkString noiseFuncName;
794 if (fStitchTiles) {
egdaniel4ca2e602015-11-18 08:01:26 -0800795 fragBuilder->emitFunction(kFloat_GrSLType,
796 "perlinnoise", SK_ARRAY_COUNT(gPerlinNoiseStitchArgs),
797 gPerlinNoiseStitchArgs, noiseCode.c_str(), &noiseFuncName);
sugoi@google.comd537af52013-06-10 13:59:25 +0000798 } else {
egdaniel4ca2e602015-11-18 08:01:26 -0800799 fragBuilder->emitFunction(kFloat_GrSLType,
800 "perlinnoise", SK_ARRAY_COUNT(gPerlinNoiseArgs),
801 gPerlinNoiseArgs, noiseCode.c_str(), &noiseFuncName);
sugoi@google.comd537af52013-06-10 13:59:25 +0000802 }
sugoi@google.come3b4c502013-04-05 13:47:09 +0000803
sugoi@google.comd537af52013-06-10 13:59:25 +0000804 // There are rounding errors if the floor operation is not performed here
egdaniel4ca2e602015-11-18 08:01:26 -0800805 fragBuilder->codeAppendf("\n\t\tvec2 %s = floor(%s.xy) * %s;",
806 noiseVec, vCoords.c_str(), baseFrequencyUni);
sugoi@google.comd537af52013-06-10 13:59:25 +0000807
808 // Clear the color accumulator
egdaniel4ca2e602015-11-18 08:01:26 -0800809 fragBuilder->codeAppendf("\n\t\t%s = vec4(0.0);", args.fOutputColor);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000810
811 if (fStitchTiles) {
sugoi@google.comd537af52013-06-10 13:59:25 +0000812 // Set up TurbulenceInitial stitch values.
egdaniel4ca2e602015-11-18 08:01:26 -0800813 fragBuilder->codeAppendf("\n\t\tvec2 %s = %s;", stitchData, stitchDataUni);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000814 }
sugoi@google.come3b4c502013-04-05 13:47:09 +0000815
egdaniel4ca2e602015-11-18 08:01:26 -0800816 fragBuilder->codeAppendf("\n\t\tfloat %s = 1.0;", ratio);
sugoi@google.comd537af52013-06-10 13:59:25 +0000817
818 // Loop over all octaves
egdaniel4ca2e602015-11-18 08:01:26 -0800819 fragBuilder->codeAppendf("\n\t\tfor (int octave = 0; octave < %d; ++octave) {", fNumOctaves);
sugoi@google.comd537af52013-06-10 13:59:25 +0000820
egdaniel4ca2e602015-11-18 08:01:26 -0800821 fragBuilder->codeAppendf("\n\t\t\t%s += ", args.fOutputColor);
sugoi@google.comd537af52013-06-10 13:59:25 +0000822 if (fType != SkPerlinNoiseShader::kFractalNoise_Type) {
egdaniel4ca2e602015-11-18 08:01:26 -0800823 fragBuilder->codeAppend("abs(");
sugoi@google.comd537af52013-06-10 13:59:25 +0000824 }
825 if (fStitchTiles) {
egdaniel4ca2e602015-11-18 08:01:26 -0800826 fragBuilder->codeAppendf(
sugoi@google.comd537af52013-06-10 13:59:25 +0000827 "vec4(\n\t\t\t\t%s(%s, %s, %s),\n\t\t\t\t%s(%s, %s, %s),"
828 "\n\t\t\t\t%s(%s, %s, %s),\n\t\t\t\t%s(%s, %s, %s))",
829 noiseFuncName.c_str(), chanCoordR, noiseVec, stitchData,
830 noiseFuncName.c_str(), chanCoordG, noiseVec, stitchData,
831 noiseFuncName.c_str(), chanCoordB, noiseVec, stitchData,
832 noiseFuncName.c_str(), chanCoordA, noiseVec, stitchData);
833 } else {
egdaniel4ca2e602015-11-18 08:01:26 -0800834 fragBuilder->codeAppendf(
sugoi@google.comd537af52013-06-10 13:59:25 +0000835 "vec4(\n\t\t\t\t%s(%s, %s),\n\t\t\t\t%s(%s, %s),"
836 "\n\t\t\t\t%s(%s, %s),\n\t\t\t\t%s(%s, %s))",
837 noiseFuncName.c_str(), chanCoordR, noiseVec,
838 noiseFuncName.c_str(), chanCoordG, noiseVec,
839 noiseFuncName.c_str(), chanCoordB, noiseVec,
840 noiseFuncName.c_str(), chanCoordA, noiseVec);
841 }
842 if (fType != SkPerlinNoiseShader::kFractalNoise_Type) {
egdaniel4ca2e602015-11-18 08:01:26 -0800843 fragBuilder->codeAppendf(")"); // end of "abs("
sugoi@google.comd537af52013-06-10 13:59:25 +0000844 }
egdaniel4ca2e602015-11-18 08:01:26 -0800845 fragBuilder->codeAppendf(" * %s;", ratio);
sugoi@google.comd537af52013-06-10 13:59:25 +0000846
egdaniel4ca2e602015-11-18 08:01:26 -0800847 fragBuilder->codeAppendf("\n\t\t\t%s *= vec2(2.0);", noiseVec);
848 fragBuilder->codeAppendf("\n\t\t\t%s *= 0.5;", ratio);
sugoi@google.comd537af52013-06-10 13:59:25 +0000849
850 if (fStitchTiles) {
egdaniel4ca2e602015-11-18 08:01:26 -0800851 fragBuilder->codeAppendf("\n\t\t\t%s *= vec2(2.0);", stitchData);
sugoi@google.comd537af52013-06-10 13:59:25 +0000852 }
egdaniel4ca2e602015-11-18 08:01:26 -0800853 fragBuilder->codeAppend("\n\t\t}"); // end of the for loop on octaves
sugoi@google.come3b4c502013-04-05 13:47:09 +0000854
855 if (fType == SkPerlinNoiseShader::kFractalNoise_Type) {
856 // The value of turbulenceFunctionResult comes from ((turbulenceFunctionResult) + 1) / 2
857 // by fractalNoise and (turbulenceFunctionResult) by turbulence.
egdaniel4ca2e602015-11-18 08:01:26 -0800858 fragBuilder->codeAppendf("\n\t\t%s = %s * vec4(0.5) + vec4(0.5);",
859 args.fOutputColor,args.fOutputColor);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000860 }
861
sugoi@google.come3b4c502013-04-05 13:47:09 +0000862 // Clamp values
egdaniel4ca2e602015-11-18 08:01:26 -0800863 fragBuilder->codeAppendf("\n\t\t%s = clamp(%s, 0.0, 1.0);", args.fOutputColor, args.fOutputColor);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000864
865 // Pre-multiply the result
egdaniel4ca2e602015-11-18 08:01:26 -0800866 fragBuilder->codeAppendf("\n\t\t%s = vec4(%s.rgb * %s.aaa, %s.a);\n",
867 args.fOutputColor, args.fOutputColor,
868 args.fOutputColor, args.fOutputColor);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000869}
870
jvanverthcfc18862015-04-28 08:48:20 -0700871void GrGLPerlinNoise::GenKey(const GrProcessor& processor, const GrGLSLCaps&,
joshualittb0a8a372014-09-23 09:50:21 -0700872 GrProcessorKeyBuilder* b) {
873 const GrPerlinNoiseEffect& turbulence = processor.cast<GrPerlinNoiseEffect>();
sugoi@google.come3b4c502013-04-05 13:47:09 +0000874
bsalomon63e99f72014-07-21 08:03:14 -0700875 uint32_t key = turbulence.numOctaves();
sugoi@google.come3b4c502013-04-05 13:47:09 +0000876
877 key = key << 3; // Make room for next 3 bits
878
879 switch (turbulence.type()) {
880 case SkPerlinNoiseShader::kFractalNoise_Type:
881 key |= 0x1;
882 break;
883 case SkPerlinNoiseShader::kTurbulence_Type:
884 key |= 0x2;
885 break;
886 default:
887 // leave key at 0
888 break;
889 }
890
891 if (turbulence.stitchTiles()) {
892 key |= 0x4; // Flip the 3rd bit if tile stitching is on
893 }
894
bsalomon63e99f72014-07-21 08:03:14 -0700895 b->add32(key);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000896}
897
egdaniel018fb622015-10-28 07:26:40 -0700898void GrGLPerlinNoise::onSetData(const GrGLSLProgramDataManager& pdman,
899 const GrProcessor& processor) {
wangyixb1daa862015-08-18 11:29:31 -0700900 INHERITED::onSetData(pdman, processor);
senorblancof3b50272014-06-16 10:49:58 -0700901
joshualittb0a8a372014-09-23 09:50:21 -0700902 const GrPerlinNoiseEffect& turbulence = processor.cast<GrPerlinNoiseEffect>();
sugoi@google.come3b4c502013-04-05 13:47:09 +0000903
904 const SkVector& baseFrequency = turbulence.baseFrequency();
kkinnunen7510b222014-07-30 00:04:16 -0700905 pdman.set2f(fBaseFrequencyUni, baseFrequency.fX, baseFrequency.fY);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000906
sugoi@google.com4775cba2013-04-17 13:46:56 +0000907 if (turbulence.stitchTiles()) {
908 const SkPerlinNoiseShader::StitchData& stitchData = turbulence.stitchData();
kkinnunen7510b222014-07-30 00:04:16 -0700909 pdman.set2f(fStitchDataUni, SkIntToScalar(stitchData.fWidth),
commit-bot@chromium.org98393202013-07-04 18:13:05 +0000910 SkIntToScalar(stitchData.fHeight));
sugoi@google.com4775cba2013-04-17 13:46:56 +0000911 }
912}
913
sugoi@google.come3b4c502013-04-05 13:47:09 +0000914/////////////////////////////////////////////////////////////////////
bsalomonc21b09e2015-08-28 18:46:56 -0700915const GrFragmentProcessor* SkPerlinNoiseShader::asFragmentProcessor(
916 GrContext* context,
917 const SkMatrix& viewM,
918 const SkMatrix* externalLocalMatrix,
bsalomon4a339522015-10-06 08:40:50 -0700919 SkFilterQuality) const {
bsalomon49f085d2014-09-05 13:34:00 -0700920 SkASSERT(context);
mtklein3f3b3d02014-12-01 11:47:08 -0800921
commit-bot@chromium.org96fb7482014-05-09 20:28:11 +0000922 SkMatrix localMatrix = this->getLocalMatrix();
923 if (externalLocalMatrix) {
924 localMatrix.preConcat(*externalLocalMatrix);
925 }
926
joshualitt5531d512014-12-17 15:50:11 -0800927 SkMatrix matrix = viewM;
senorblancoca6a7c22014-06-27 13:35:52 -0700928 matrix.preConcat(localMatrix);
929
commit-bot@chromium.orgc2a0ea62013-11-06 10:08:38 +0000930 if (0 == fNumOctaves) {
commit-bot@chromium.orgc2a0ea62013-11-06 10:08:38 +0000931 if (kFractalNoise_Type == fType) {
bsalomonc21b09e2015-08-28 18:46:56 -0700932 // Extract the incoming alpha and emit rgba = (a/4, a/4, a/4, a/2)
933 SkAutoTUnref<const GrFragmentProcessor> inner(
934 GrConstColorProcessor::Create(0x80404040,
935 GrConstColorProcessor::kModulateRGBA_InputMode));
bsalomonf1b7a1d2015-09-28 06:26:28 -0700936 return GrFragmentProcessor::MulOutputByInputAlpha(inner);
reedcff10b22015-03-03 06:41:45 -0800937 }
bsalomonc21b09e2015-08-28 18:46:56 -0700938 // Emit zero.
939 return GrConstColorProcessor::Create(0x0, GrConstColorProcessor::kIgnore_InputMode);
commit-bot@chromium.orgc2a0ea62013-11-06 10:08:38 +0000940 }
941
sugoi@google.come3b4c502013-04-05 13:47:09 +0000942 // Either we don't stitch tiles, either we have a valid tile size
943 SkASSERT(!fStitchTiles || !fTileSize.isEmpty());
944
joshualittb0a8a372014-09-23 09:50:21 -0700945 SkPerlinNoiseShader::PaintingData* paintingData =
halcanary385fe4d2015-08-26 13:07:48 -0700946 new PaintingData(fTileSize, fSeed, fBaseFrequencyX, fBaseFrequencyY, matrix);
bsalomonbcf0a522014-10-08 08:40:09 -0700947 SkAutoTUnref<GrTexture> permutationsTexture(
bsalomonafa95e22015-10-12 10:39:46 -0700948 GrRefCachedBitmapTexture(context, paintingData->getPermutationsBitmap(),
949 GrTextureParams::ClampNoFilter()));
bsalomonbcf0a522014-10-08 08:40:09 -0700950 SkAutoTUnref<GrTexture> noiseTexture(
bsalomonafa95e22015-10-12 10:39:46 -0700951 GrRefCachedBitmapTexture(context, paintingData->getNoiseBitmap(),
952 GrTextureParams::ClampNoFilter()));
sugoi@google.come3b4c502013-04-05 13:47:09 +0000953
joshualitt5531d512014-12-17 15:50:11 -0800954 SkMatrix m = viewM;
senorblancoca6a7c22014-06-27 13:35:52 -0700955 m.setTranslateX(-localMatrix.getTranslateX() + SK_Scalar1);
956 m.setTranslateY(-localMatrix.getTranslateY() + SK_Scalar1);
bsalomon49f085d2014-09-05 13:34:00 -0700957 if ((permutationsTexture) && (noiseTexture)) {
bsalomonc21b09e2015-08-28 18:46:56 -0700958 SkAutoTUnref<GrFragmentProcessor> inner(
bsalomon4a339522015-10-06 08:40:50 -0700959 GrPerlinNoiseEffect::Create(fType,
bsalomonc21b09e2015-08-28 18:46:56 -0700960 fNumOctaves,
961 fStitchTiles,
962 paintingData,
963 permutationsTexture, noiseTexture,
964 m));
bsalomonf1b7a1d2015-09-28 06:26:28 -0700965 return GrFragmentProcessor::MulOutputByInputAlpha(inner);
senorblancoca6a7c22014-06-27 13:35:52 -0700966 }
bsalomonc21b09e2015-08-28 18:46:56 -0700967 delete paintingData;
968 return nullptr;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000969}
970
971#endif
972
commit-bot@chromium.org0f10f7b2014-03-13 18:02:17 +0000973#ifndef SK_IGNORE_TO_STRING
sugoi@google.come3b4c502013-04-05 13:47:09 +0000974void SkPerlinNoiseShader::toString(SkString* str) const {
975 str->append("SkPerlinNoiseShader: (");
976
977 str->append("type: ");
978 switch (fType) {
979 case kFractalNoise_Type:
980 str->append("\"fractal noise\"");
981 break;
982 case kTurbulence_Type:
983 str->append("\"turbulence\"");
984 break;
985 default:
986 str->append("\"unknown\"");
987 break;
988 }
989 str->append(" base frequency: (");
990 str->appendScalar(fBaseFrequencyX);
991 str->append(", ");
992 str->appendScalar(fBaseFrequencyY);
993 str->append(") number of octaves: ");
994 str->appendS32(fNumOctaves);
995 str->append(" seed: ");
996 str->appendScalar(fSeed);
997 str->append(" stitch tiles: ");
998 str->append(fStitchTiles ? "true " : "false ");
999
1000 this->INHERITED::toString(str);
1001
1002 str->append(")");
1003}
1004#endif