sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 1 | /* |
| 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.org | c2a0ea6 | 2013-11-06 10:08:38 +0000 | [diff] [blame] | 10 | #include "SkColorFilter.h" |
commit-bot@chromium.org | 8b0e8ac | 2014-01-30 18:58:24 +0000 | [diff] [blame] | 11 | #include "SkReadBuffer.h" |
| 12 | #include "SkWriteBuffer.h" |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 13 | #include "SkShader.h" |
| 14 | #include "SkUnPreMultiply.h" |
| 15 | #include "SkString.h" |
| 16 | |
| 17 | #if SK_SUPPORT_GPU |
| 18 | #include "GrContext.h" |
bsalomon@google.com | 77af680 | 2013-10-02 13:04:56 +0000 | [diff] [blame] | 19 | #include "GrCoordTransform.h" |
egdaniel | 605dd0f | 2014-11-12 08:35:25 -0800 | [diff] [blame] | 20 | #include "GrInvariantOutput.h" |
joshualitt | eb2a676 | 2014-12-04 11:35:33 -0800 | [diff] [blame] | 21 | #include "SkGr.h" |
bsalomon | c21b09e | 2015-08-28 18:46:56 -0700 | [diff] [blame] | 22 | #include "effects/GrConstColorProcessor.h" |
wangyix | 6af0c93 | 2015-07-22 10:21:17 -0700 | [diff] [blame] | 23 | #include "gl/GrGLFragmentProcessor.h" |
joshualitt | 30ba436 | 2014-08-21 20:18:45 -0700 | [diff] [blame] | 24 | #include "gl/builders/GrGLProgramBuilder.h" |
egdaniel | 018fb62 | 2015-10-28 07:26:40 -0700 | [diff] [blame^] | 25 | #include "glsl/GrGLSLProgramDataManager.h" |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 26 | #endif |
| 27 | |
| 28 | static const int kBlockSize = 256; |
| 29 | static const int kBlockMask = kBlockSize - 1; |
| 30 | static const int kPerlinNoise = 4096; |
| 31 | static const int kRandMaximum = SK_MaxS32; // 2**31 - 1 |
| 32 | |
| 33 | namespace { |
| 34 | |
| 35 | // noiseValue is the color component's value (or color) |
| 36 | // limitValue is the maximum perlin noise array index value allowed |
| 37 | // newValue is the current noise dimension (either width or height) |
| 38 | inline int checkNoise(int noiseValue, int limitValue, int newValue) { |
| 39 | // If the noise value would bring us out of bounds of the current noise array while we are |
| 40 | // stiching noise tiles together, wrap the noise around the current dimension of the noise to |
| 41 | // stay within the array bounds in a continuous fashion (so that tiling lines are not visible) |
| 42 | if (noiseValue >= limitValue) { |
| 43 | noiseValue -= newValue; |
| 44 | } |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 45 | return noiseValue; |
| 46 | } |
| 47 | |
| 48 | inline SkScalar smoothCurve(SkScalar t) { |
commit-bot@chromium.org | 4b413c8 | 2013-11-25 19:44:07 +0000 | [diff] [blame] | 49 | static const SkScalar SK_Scalar3 = 3.0f; |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 50 | |
| 51 | // returns t * t * (3 - 2 * t) |
| 52 | return SkScalarMul(SkScalarSquare(t), SK_Scalar3 - 2 * t); |
| 53 | } |
| 54 | |
| 55 | } // end namespace |
| 56 | |
| 57 | struct SkPerlinNoiseShader::StitchData { |
| 58 | StitchData() |
| 59 | : fWidth(0) |
| 60 | , fWrapX(0) |
| 61 | , fHeight(0) |
| 62 | , fWrapY(0) |
| 63 | {} |
| 64 | |
| 65 | bool operator==(const StitchData& other) const { |
| 66 | return fWidth == other.fWidth && |
| 67 | fWrapX == other.fWrapX && |
| 68 | fHeight == other.fHeight && |
| 69 | fWrapY == other.fWrapY; |
| 70 | } |
| 71 | |
| 72 | int fWidth; // How much to subtract to wrap for stitching. |
| 73 | int fWrapX; // Minimum value to wrap. |
| 74 | int fHeight; |
| 75 | int fWrapY; |
| 76 | }; |
| 77 | |
| 78 | struct SkPerlinNoiseShader::PaintingData { |
commit-bot@chromium.org | fd5c9a6 | 2014-03-06 15:13:53 +0000 | [diff] [blame] | 79 | PaintingData(const SkISize& tileSize, SkScalar seed, |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 80 | SkScalar baseFrequencyX, SkScalar baseFrequencyY, |
| 81 | const SkMatrix& matrix) |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 82 | { |
reed | 11fa224 | 2015-03-13 06:08:28 -0700 | [diff] [blame] | 83 | SkVector vec[2] = { |
| 84 | { SkScalarInvert(baseFrequencyX), SkScalarInvert(baseFrequencyY) }, |
| 85 | { SkIntToScalar(tileSize.fWidth), SkIntToScalar(tileSize.fHeight) }, |
| 86 | }; |
| 87 | matrix.mapVectors(vec, 2); |
| 88 | |
| 89 | fBaseFrequency.set(SkScalarInvert(vec[0].fX), SkScalarInvert(vec[0].fY)); |
| 90 | fTileSize.set(SkScalarRoundToInt(vec[1].fX), SkScalarRoundToInt(vec[1].fY)); |
commit-bot@chromium.org | fd5c9a6 | 2014-03-06 15:13:53 +0000 | [diff] [blame] | 91 | this->init(seed); |
| 92 | if (!fTileSize.isEmpty()) { |
| 93 | this->stitch(); |
| 94 | } |
| 95 | |
senorblanco | f3b5027 | 2014-06-16 10:49:58 -0700 | [diff] [blame] | 96 | #if SK_SUPPORT_GPU |
commit-bot@chromium.org | a3264e5 | 2014-05-30 13:26:10 +0000 | [diff] [blame] | 97 | fPermutationsBitmap.setInfo(SkImageInfo::MakeA8(kBlockSize, 1)); |
commit-bot@chromium.org | fd5c9a6 | 2014-03-06 15:13:53 +0000 | [diff] [blame] | 98 | fPermutationsBitmap.setPixels(fLatticeSelector); |
| 99 | |
commit-bot@chromium.org | a3264e5 | 2014-05-30 13:26:10 +0000 | [diff] [blame] | 100 | fNoiseBitmap.setInfo(SkImageInfo::MakeN32Premul(kBlockSize, 4)); |
commit-bot@chromium.org | fd5c9a6 | 2014-03-06 15:13:53 +0000 | [diff] [blame] | 101 | fNoiseBitmap.setPixels(fNoise[0][0]); |
| 102 | #endif |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | int fSeed; |
| 106 | uint8_t fLatticeSelector[kBlockSize]; |
| 107 | uint16_t fNoise[4][kBlockSize][2]; |
| 108 | SkPoint fGradient[4][kBlockSize]; |
| 109 | SkISize fTileSize; |
| 110 | SkVector fBaseFrequency; |
| 111 | StitchData fStitchDataInit; |
| 112 | |
| 113 | private: |
| 114 | |
senorblanco | f3b5027 | 2014-06-16 10:49:58 -0700 | [diff] [blame] | 115 | #if SK_SUPPORT_GPU |
commit-bot@chromium.org | fd5c9a6 | 2014-03-06 15:13:53 +0000 | [diff] [blame] | 116 | SkBitmap fPermutationsBitmap; |
| 117 | SkBitmap fNoiseBitmap; |
| 118 | #endif |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 119 | |
| 120 | inline int random() { |
| 121 | static const int gRandAmplitude = 16807; // 7**5; primitive root of m |
| 122 | static const int gRandQ = 127773; // m / a |
| 123 | static const int gRandR = 2836; // m % a |
| 124 | |
| 125 | int result = gRandAmplitude * (fSeed % gRandQ) - gRandR * (fSeed / gRandQ); |
| 126 | if (result <= 0) |
| 127 | result += kRandMaximum; |
| 128 | fSeed = result; |
| 129 | return result; |
| 130 | } |
| 131 | |
commit-bot@chromium.org | fd5c9a6 | 2014-03-06 15:13:53 +0000 | [diff] [blame] | 132 | // Only called once. Could be part of the constructor. |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 133 | void init(SkScalar seed) |
| 134 | { |
| 135 | static const SkScalar gInvBlockSizef = SkScalarInvert(SkIntToScalar(kBlockSize)); |
| 136 | |
senorblanco@chromium.org | 857e320 | 2014-01-09 17:41:42 +0000 | [diff] [blame] | 137 | // According to the SVG spec, we must truncate (not round) the seed value. |
| 138 | fSeed = SkScalarTruncToInt(seed); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 139 | // The seed value clamp to the range [1, kRandMaximum - 1]. |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 140 | if (fSeed <= 0) { |
| 141 | fSeed = -(fSeed % (kRandMaximum - 1)) + 1; |
| 142 | } |
| 143 | if (fSeed > kRandMaximum - 1) { |
| 144 | fSeed = kRandMaximum - 1; |
| 145 | } |
| 146 | for (int channel = 0; channel < 4; ++channel) { |
| 147 | for (int i = 0; i < kBlockSize; ++i) { |
| 148 | fLatticeSelector[i] = i; |
| 149 | fNoise[channel][i][0] = (random() % (2 * kBlockSize)); |
| 150 | fNoise[channel][i][1] = (random() % (2 * kBlockSize)); |
| 151 | } |
| 152 | } |
| 153 | for (int i = kBlockSize - 1; i > 0; --i) { |
| 154 | int k = fLatticeSelector[i]; |
| 155 | int j = random() % kBlockSize; |
| 156 | SkASSERT(j >= 0); |
| 157 | SkASSERT(j < kBlockSize); |
| 158 | fLatticeSelector[i] = fLatticeSelector[j]; |
| 159 | fLatticeSelector[j] = k; |
| 160 | } |
| 161 | |
| 162 | // Perform the permutations now |
| 163 | { |
| 164 | // Copy noise data |
| 165 | uint16_t noise[4][kBlockSize][2]; |
| 166 | for (int i = 0; i < kBlockSize; ++i) { |
| 167 | for (int channel = 0; channel < 4; ++channel) { |
| 168 | for (int j = 0; j < 2; ++j) { |
| 169 | noise[channel][i][j] = fNoise[channel][i][j]; |
| 170 | } |
| 171 | } |
| 172 | } |
| 173 | // Do permutations on noise data |
| 174 | for (int i = 0; i < kBlockSize; ++i) { |
| 175 | for (int channel = 0; channel < 4; ++channel) { |
| 176 | for (int j = 0; j < 2; ++j) { |
| 177 | fNoise[channel][i][j] = noise[channel][fLatticeSelector[i]][j]; |
| 178 | } |
| 179 | } |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | // Half of the largest possible value for 16 bit unsigned int |
commit-bot@chromium.org | 4b413c8 | 2013-11-25 19:44:07 +0000 | [diff] [blame] | 184 | static const SkScalar gHalfMax16bits = 32767.5f; |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 185 | |
| 186 | // Compute gradients from permutated noise data |
| 187 | for (int channel = 0; channel < 4; ++channel) { |
| 188 | for (int i = 0; i < kBlockSize; ++i) { |
| 189 | fGradient[channel][i] = SkPoint::Make( |
| 190 | SkScalarMul(SkIntToScalar(fNoise[channel][i][0] - kBlockSize), |
| 191 | gInvBlockSizef), |
skia.committer@gmail.com | cff0243 | 2013-04-06 07:01:10 +0000 | [diff] [blame] | 192 | SkScalarMul(SkIntToScalar(fNoise[channel][i][1] - kBlockSize), |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 193 | gInvBlockSizef)); |
| 194 | fGradient[channel][i].normalize(); |
| 195 | // Put the normalized gradient back into the noise data |
| 196 | fNoise[channel][i][0] = SkScalarRoundToInt(SkScalarMul( |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 197 | fGradient[channel][i].fX + SK_Scalar1, gHalfMax16bits)); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 198 | fNoise[channel][i][1] = SkScalarRoundToInt(SkScalarMul( |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 199 | fGradient[channel][i].fY + SK_Scalar1, gHalfMax16bits)); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 200 | } |
| 201 | } |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 202 | } |
| 203 | |
commit-bot@chromium.org | fd5c9a6 | 2014-03-06 15:13:53 +0000 | [diff] [blame] | 204 | // Only called once. Could be part of the constructor. |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 205 | void stitch() { |
| 206 | SkScalar tileWidth = SkIntToScalar(fTileSize.width()); |
| 207 | SkScalar tileHeight = SkIntToScalar(fTileSize.height()); |
| 208 | SkASSERT(tileWidth > 0 && tileHeight > 0); |
| 209 | // When stitching tiled turbulence, the frequencies must be adjusted |
| 210 | // so that the tile borders will be continuous. |
| 211 | if (fBaseFrequency.fX) { |
reed@google.com | 8015cdd | 2013-12-18 15:49:32 +0000 | [diff] [blame] | 212 | SkScalar lowFrequencx = |
| 213 | SkScalarFloorToScalar(tileWidth * fBaseFrequency.fX) / tileWidth; |
| 214 | SkScalar highFrequencx = |
| 215 | SkScalarCeilToScalar(tileWidth * fBaseFrequency.fX) / tileWidth; |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 216 | // BaseFrequency should be non-negative according to the standard. |
reed | 80ea19c | 2015-05-12 10:37:34 -0700 | [diff] [blame] | 217 | if (fBaseFrequency.fX / lowFrequencx < highFrequencx / fBaseFrequency.fX) { |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 218 | fBaseFrequency.fX = lowFrequencx; |
| 219 | } else { |
| 220 | fBaseFrequency.fX = highFrequencx; |
| 221 | } |
| 222 | } |
| 223 | if (fBaseFrequency.fY) { |
reed@google.com | 8015cdd | 2013-12-18 15:49:32 +0000 | [diff] [blame] | 224 | SkScalar lowFrequency = |
| 225 | SkScalarFloorToScalar(tileHeight * fBaseFrequency.fY) / tileHeight; |
| 226 | SkScalar highFrequency = |
| 227 | SkScalarCeilToScalar(tileHeight * fBaseFrequency.fY) / tileHeight; |
reed | 80ea19c | 2015-05-12 10:37:34 -0700 | [diff] [blame] | 228 | if (fBaseFrequency.fY / lowFrequency < highFrequency / fBaseFrequency.fY) { |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 229 | fBaseFrequency.fY = lowFrequency; |
| 230 | } else { |
| 231 | fBaseFrequency.fY = highFrequency; |
| 232 | } |
| 233 | } |
| 234 | // Set up TurbulenceInitial stitch values. |
| 235 | fStitchDataInit.fWidth = |
reed@google.com | 8015cdd | 2013-12-18 15:49:32 +0000 | [diff] [blame] | 236 | SkScalarRoundToInt(tileWidth * fBaseFrequency.fX); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 237 | fStitchDataInit.fWrapX = kPerlinNoise + fStitchDataInit.fWidth; |
| 238 | fStitchDataInit.fHeight = |
reed@google.com | 8015cdd | 2013-12-18 15:49:32 +0000 | [diff] [blame] | 239 | SkScalarRoundToInt(tileHeight * fBaseFrequency.fY); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 240 | fStitchDataInit.fWrapY = kPerlinNoise + fStitchDataInit.fHeight; |
| 241 | } |
| 242 | |
commit-bot@chromium.org | fd5c9a6 | 2014-03-06 15:13:53 +0000 | [diff] [blame] | 243 | public: |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 244 | |
senorblanco | f3b5027 | 2014-06-16 10:49:58 -0700 | [diff] [blame] | 245 | #if SK_SUPPORT_GPU |
commit-bot@chromium.org | fd5c9a6 | 2014-03-06 15:13:53 +0000 | [diff] [blame] | 246 | const SkBitmap& getPermutationsBitmap() const { return fPermutationsBitmap; } |
| 247 | |
| 248 | const SkBitmap& getNoiseBitmap() const { return fNoiseBitmap; } |
| 249 | #endif |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 250 | }; |
| 251 | |
| 252 | SkShader* SkPerlinNoiseShader::CreateFractalNoise(SkScalar baseFrequencyX, SkScalar baseFrequencyY, |
| 253 | int numOctaves, SkScalar seed, |
| 254 | const SkISize* tileSize) { |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 255 | return new SkPerlinNoiseShader(kFractalNoise_Type, baseFrequencyX, baseFrequencyY, numOctaves, |
| 256 | seed, tileSize); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 257 | } |
| 258 | |
commit-bot@chromium.org | 9fbbcca | 2014-04-01 16:09:37 +0000 | [diff] [blame] | 259 | SkShader* SkPerlinNoiseShader::CreateTurbulence(SkScalar baseFrequencyX, SkScalar baseFrequencyY, |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 260 | int numOctaves, SkScalar seed, |
| 261 | const SkISize* tileSize) { |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 262 | return new SkPerlinNoiseShader(kTurbulence_Type, baseFrequencyX, baseFrequencyY, numOctaves, |
| 263 | seed, tileSize); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 264 | } |
| 265 | |
| 266 | SkPerlinNoiseShader::SkPerlinNoiseShader(SkPerlinNoiseShader::Type type, |
| 267 | SkScalar baseFrequencyX, |
| 268 | SkScalar baseFrequencyY, |
| 269 | int numOctaves, |
| 270 | SkScalar seed, |
| 271 | const SkISize* tileSize) |
| 272 | : fType(type) |
| 273 | , fBaseFrequencyX(baseFrequencyX) |
| 274 | , fBaseFrequencyY(baseFrequencyY) |
commit-bot@chromium.org | ce33d60 | 2013-11-25 21:46:31 +0000 | [diff] [blame] | 275 | , fNumOctaves(numOctaves > 255 ? 255 : numOctaves/*[0,255] octaves allowed*/) |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 276 | , fSeed(seed) |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 277 | , fTileSize(nullptr == tileSize ? SkISize::Make(0, 0) : *tileSize) |
commit-bot@chromium.org | fd5c9a6 | 2014-03-06 15:13:53 +0000 | [diff] [blame] | 278 | , fStitchTiles(!fTileSize.isEmpty()) |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 279 | { |
| 280 | SkASSERT(numOctaves >= 0 && numOctaves < 256); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 281 | } |
| 282 | |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 283 | SkPerlinNoiseShader::~SkPerlinNoiseShader() { |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 284 | } |
| 285 | |
reed | 9fa60da | 2014-08-21 07:59:51 -0700 | [diff] [blame] | 286 | SkFlattenable* SkPerlinNoiseShader::CreateProc(SkReadBuffer& buffer) { |
| 287 | Type type = (Type)buffer.readInt(); |
| 288 | SkScalar freqX = buffer.readScalar(); |
| 289 | SkScalar freqY = buffer.readScalar(); |
| 290 | int octaves = buffer.readInt(); |
| 291 | SkScalar seed = buffer.readScalar(); |
| 292 | SkISize tileSize; |
| 293 | tileSize.fWidth = buffer.readInt(); |
| 294 | tileSize.fHeight = buffer.readInt(); |
| 295 | |
| 296 | switch (type) { |
| 297 | case kFractalNoise_Type: |
| 298 | return SkPerlinNoiseShader::CreateFractalNoise(freqX, freqY, octaves, seed, &tileSize); |
| 299 | case kTurbulence_Type: |
| 300 | return SkPerlinNoiseShader::CreateTubulence(freqX, freqY, octaves, seed, &tileSize); |
| 301 | default: |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 302 | return nullptr; |
reed | 9fa60da | 2014-08-21 07:59:51 -0700 | [diff] [blame] | 303 | } |
| 304 | } |
| 305 | |
commit-bot@chromium.org | 8b0e8ac | 2014-01-30 18:58:24 +0000 | [diff] [blame] | 306 | void SkPerlinNoiseShader::flatten(SkWriteBuffer& buffer) const { |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 307 | buffer.writeInt((int) fType); |
| 308 | buffer.writeScalar(fBaseFrequencyX); |
| 309 | buffer.writeScalar(fBaseFrequencyY); |
| 310 | buffer.writeInt(fNumOctaves); |
| 311 | buffer.writeScalar(fSeed); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 312 | buffer.writeInt(fTileSize.fWidth); |
| 313 | buffer.writeInt(fTileSize.fHeight); |
| 314 | } |
| 315 | |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 316 | SkScalar SkPerlinNoiseShader::PerlinNoiseShaderContext::noise2D( |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 317 | int channel, const StitchData& stitchData, const SkPoint& noiseVector) const { |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 318 | struct Noise { |
| 319 | int noisePositionIntegerValue; |
senorblanco | ce6a354 | 2014-06-12 11:24:19 -0700 | [diff] [blame] | 320 | int nextNoisePositionIntegerValue; |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 321 | SkScalar noisePositionFractionValue; |
| 322 | Noise(SkScalar component) |
| 323 | { |
| 324 | SkScalar position = component + kPerlinNoise; |
| 325 | noisePositionIntegerValue = SkScalarFloorToInt(position); |
| 326 | noisePositionFractionValue = position - SkIntToScalar(noisePositionIntegerValue); |
senorblanco | ce6a354 | 2014-06-12 11:24:19 -0700 | [diff] [blame] | 327 | nextNoisePositionIntegerValue = noisePositionIntegerValue + 1; |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 328 | } |
| 329 | }; |
| 330 | Noise noiseX(noiseVector.x()); |
| 331 | Noise noiseY(noiseVector.y()); |
| 332 | SkScalar u, v; |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 333 | const SkPerlinNoiseShader& perlinNoiseShader = static_cast<const SkPerlinNoiseShader&>(fShader); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 334 | // If stitching, adjust lattice points accordingly. |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 335 | if (perlinNoiseShader.fStitchTiles) { |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 336 | noiseX.noisePositionIntegerValue = |
| 337 | checkNoise(noiseX.noisePositionIntegerValue, stitchData.fWrapX, stitchData.fWidth); |
| 338 | noiseY.noisePositionIntegerValue = |
| 339 | checkNoise(noiseY.noisePositionIntegerValue, stitchData.fWrapY, stitchData.fHeight); |
senorblanco | ce6a354 | 2014-06-12 11:24:19 -0700 | [diff] [blame] | 340 | noiseX.nextNoisePositionIntegerValue = |
| 341 | checkNoise(noiseX.nextNoisePositionIntegerValue, stitchData.fWrapX, stitchData.fWidth); |
| 342 | noiseY.nextNoisePositionIntegerValue = |
| 343 | checkNoise(noiseY.nextNoisePositionIntegerValue, stitchData.fWrapY, stitchData.fHeight); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 344 | } |
| 345 | noiseX.noisePositionIntegerValue &= kBlockMask; |
| 346 | noiseY.noisePositionIntegerValue &= kBlockMask; |
senorblanco | ce6a354 | 2014-06-12 11:24:19 -0700 | [diff] [blame] | 347 | noiseX.nextNoisePositionIntegerValue &= kBlockMask; |
| 348 | noiseY.nextNoisePositionIntegerValue &= kBlockMask; |
| 349 | int i = |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 350 | fPaintingData->fLatticeSelector[noiseX.noisePositionIntegerValue]; |
senorblanco | ce6a354 | 2014-06-12 11:24:19 -0700 | [diff] [blame] | 351 | int j = |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 352 | fPaintingData->fLatticeSelector[noiseX.nextNoisePositionIntegerValue]; |
senorblanco | ce6a354 | 2014-06-12 11:24:19 -0700 | [diff] [blame] | 353 | int b00 = (i + noiseY.noisePositionIntegerValue) & kBlockMask; |
| 354 | int b10 = (j + noiseY.noisePositionIntegerValue) & kBlockMask; |
| 355 | int b01 = (i + noiseY.nextNoisePositionIntegerValue) & kBlockMask; |
| 356 | int b11 = (j + noiseY.nextNoisePositionIntegerValue) & kBlockMask; |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 357 | SkScalar sx = smoothCurve(noiseX.noisePositionFractionValue); |
| 358 | SkScalar sy = smoothCurve(noiseY.noisePositionFractionValue); |
| 359 | // This is taken 1:1 from SVG spec: http://www.w3.org/TR/SVG11/filters.html#feTurbulenceElement |
| 360 | SkPoint fractionValue = SkPoint::Make(noiseX.noisePositionFractionValue, |
| 361 | noiseY.noisePositionFractionValue); // Offset (0,0) |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 362 | u = fPaintingData->fGradient[channel][b00].dot(fractionValue); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 363 | fractionValue.fX -= SK_Scalar1; // Offset (-1,0) |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 364 | v = fPaintingData->fGradient[channel][b10].dot(fractionValue); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 365 | SkScalar a = SkScalarInterp(u, v, sx); |
| 366 | fractionValue.fY -= SK_Scalar1; // Offset (-1,-1) |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 367 | v = fPaintingData->fGradient[channel][b11].dot(fractionValue); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 368 | fractionValue.fX = noiseX.noisePositionFractionValue; // Offset (0,-1) |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 369 | u = fPaintingData->fGradient[channel][b01].dot(fractionValue); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 370 | SkScalar b = SkScalarInterp(u, v, sx); |
| 371 | return SkScalarInterp(a, b, sy); |
| 372 | } |
| 373 | |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 374 | SkScalar SkPerlinNoiseShader::PerlinNoiseShaderContext::calculateTurbulenceValueForPoint( |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 375 | int channel, StitchData& stitchData, const SkPoint& point) const { |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 376 | const SkPerlinNoiseShader& perlinNoiseShader = static_cast<const SkPerlinNoiseShader&>(fShader); |
| 377 | if (perlinNoiseShader.fStitchTiles) { |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 378 | // Set up TurbulenceInitial stitch values. |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 379 | stitchData = fPaintingData->fStitchDataInit; |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 380 | } |
| 381 | SkScalar turbulenceFunctionResult = 0; |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 382 | SkPoint noiseVector(SkPoint::Make(SkScalarMul(point.x(), fPaintingData->fBaseFrequency.fX), |
| 383 | SkScalarMul(point.y(), fPaintingData->fBaseFrequency.fY))); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 384 | SkScalar ratio = SK_Scalar1; |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 385 | for (int octave = 0; octave < perlinNoiseShader.fNumOctaves; ++octave) { |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 386 | SkScalar noise = noise2D(channel, stitchData, noiseVector); |
reed | 80ea19c | 2015-05-12 10:37:34 -0700 | [diff] [blame] | 387 | SkScalar numer = (perlinNoiseShader.fType == kFractalNoise_Type) ? |
| 388 | noise : SkScalarAbs(noise); |
| 389 | turbulenceFunctionResult += numer / ratio; |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 390 | noiseVector.fX *= 2; |
| 391 | noiseVector.fY *= 2; |
| 392 | ratio *= 2; |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 393 | if (perlinNoiseShader.fStitchTiles) { |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 394 | // Update stitch values |
| 395 | stitchData.fWidth *= 2; |
| 396 | stitchData.fWrapX = stitchData.fWidth + kPerlinNoise; |
| 397 | stitchData.fHeight *= 2; |
| 398 | stitchData.fWrapY = stitchData.fHeight + kPerlinNoise; |
| 399 | } |
| 400 | } |
| 401 | |
| 402 | // The value of turbulenceFunctionResult comes from ((turbulenceFunctionResult) + 1) / 2 |
| 403 | // by fractalNoise and (turbulenceFunctionResult) by turbulence. |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 404 | if (perlinNoiseShader.fType == kFractalNoise_Type) { |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 405 | turbulenceFunctionResult = |
| 406 | SkScalarMul(turbulenceFunctionResult, SK_ScalarHalf) + SK_ScalarHalf; |
| 407 | } |
| 408 | |
| 409 | if (channel == 3) { // Scale alpha by paint value |
reed | 80ea19c | 2015-05-12 10:37:34 -0700 | [diff] [blame] | 410 | turbulenceFunctionResult *= SkIntToScalar(getPaintAlpha()) / 255; |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 411 | } |
| 412 | |
| 413 | // Clamp result |
| 414 | return SkScalarPin(turbulenceFunctionResult, 0, SK_Scalar1); |
| 415 | } |
| 416 | |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 417 | SkPMColor SkPerlinNoiseShader::PerlinNoiseShaderContext::shade( |
| 418 | const SkPoint& point, StitchData& stitchData) const { |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 419 | SkPoint newPoint; |
senorblanco@chromium.org | a8d95f8 | 2014-04-04 14:46:10 +0000 | [diff] [blame] | 420 | fMatrix.mapPoints(&newPoint, &point, 1); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 421 | newPoint.fX = SkScalarRoundToScalar(newPoint.fX); |
| 422 | newPoint.fY = SkScalarRoundToScalar(newPoint.fY); |
| 423 | |
| 424 | U8CPU rgba[4]; |
| 425 | for (int channel = 3; channel >= 0; --channel) { |
| 426 | rgba[channel] = SkScalarFloorToInt(255 * |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 427 | calculateTurbulenceValueForPoint(channel, stitchData, newPoint)); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 428 | } |
| 429 | return SkPreMultiplyARGB(rgba[3], rgba[0], rgba[1], rgba[2]); |
| 430 | } |
| 431 | |
commit-bot@chromium.org | ce56d96 | 2014-05-05 18:39:18 +0000 | [diff] [blame] | 432 | SkShader::Context* SkPerlinNoiseShader::onCreateContext(const ContextRec& rec, |
| 433 | void* storage) const { |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 434 | return new (storage) PerlinNoiseShaderContext(*this, rec); |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 435 | } |
| 436 | |
| 437 | size_t SkPerlinNoiseShader::contextSize() const { |
| 438 | return sizeof(PerlinNoiseShaderContext); |
| 439 | } |
| 440 | |
| 441 | SkPerlinNoiseShader::PerlinNoiseShaderContext::PerlinNoiseShaderContext( |
commit-bot@chromium.org | e901b6d | 2014-05-01 19:31:31 +0000 | [diff] [blame] | 442 | const SkPerlinNoiseShader& shader, const ContextRec& rec) |
| 443 | : INHERITED(shader, rec) |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 444 | { |
commit-bot@chromium.org | e901b6d | 2014-05-01 19:31:31 +0000 | [diff] [blame] | 445 | SkMatrix newMatrix = *rec.fMatrix; |
reed@google.com | b67b8e6 | 2014-05-12 18:12:24 +0000 | [diff] [blame] | 446 | newMatrix.preConcat(shader.getLocalMatrix()); |
| 447 | if (rec.fLocalMatrix) { |
| 448 | newMatrix.preConcat(*rec.fLocalMatrix); |
| 449 | } |
senorblanco@chromium.org | a8d95f8 | 2014-04-04 14:46:10 +0000 | [diff] [blame] | 450 | // This (1,1) translation is due to WebKit's 1 based coordinates for the noise |
| 451 | // (as opposed to 0 based, usually). The same adjustment is in the setData() function. |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 452 | fMatrix.setTranslate(-newMatrix.getTranslateX() + SK_Scalar1, -newMatrix.getTranslateY() + SK_Scalar1); |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 453 | fPaintingData = new PaintingData(shader.fTileSize, shader.fSeed, shader.fBaseFrequencyX, |
| 454 | shader.fBaseFrequencyY, newMatrix); |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 455 | } |
| 456 | |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 457 | SkPerlinNoiseShader::PerlinNoiseShaderContext::~PerlinNoiseShaderContext() { delete fPaintingData; } |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 458 | |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 459 | void SkPerlinNoiseShader::PerlinNoiseShaderContext::shadeSpan( |
| 460 | int x, int y, SkPMColor result[], int count) { |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 461 | SkPoint point = SkPoint::Make(SkIntToScalar(x), SkIntToScalar(y)); |
| 462 | StitchData stitchData; |
| 463 | for (int i = 0; i < count; ++i) { |
| 464 | result[i] = shade(point, stitchData); |
| 465 | point.fX += SK_Scalar1; |
| 466 | } |
| 467 | } |
| 468 | |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 469 | void SkPerlinNoiseShader::PerlinNoiseShaderContext::shadeSpan16( |
| 470 | int x, int y, uint16_t result[], int count) { |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 471 | SkPoint point = SkPoint::Make(SkIntToScalar(x), SkIntToScalar(y)); |
| 472 | StitchData stitchData; |
| 473 | DITHER_565_SCAN(y); |
| 474 | for (int i = 0; i < count; ++i) { |
| 475 | unsigned dither = DITHER_VALUE(x); |
| 476 | result[i] = SkDitherRGB32To565(shade(point, stitchData), dither); |
| 477 | DITHER_INC_X(x); |
| 478 | point.fX += SK_Scalar1; |
| 479 | } |
| 480 | } |
| 481 | |
| 482 | ///////////////////////////////////////////////////////////////////// |
| 483 | |
commit-bot@chromium.org | 344cf45 | 2013-06-17 14:19:01 +0000 | [diff] [blame] | 484 | #if SK_SUPPORT_GPU |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 485 | |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 486 | class GrGLPerlinNoise : public GrGLFragmentProcessor { |
sugoi@google.com | 4775cba | 2013-04-17 13:46:56 +0000 | [diff] [blame] | 487 | public: |
joshualitt | eb2a676 | 2014-12-04 11:35:33 -0800 | [diff] [blame] | 488 | GrGLPerlinNoise(const GrProcessor&); |
sugoi@google.com | 4775cba | 2013-04-17 13:46:56 +0000 | [diff] [blame] | 489 | virtual ~GrGLPerlinNoise() {} |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 490 | |
wangyix | 7c157a9 | 2015-07-22 15:08:53 -0700 | [diff] [blame] | 491 | virtual void emitCode(EmitArgs&) override; |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 492 | |
jvanverth | cfc1886 | 2015-04-28 08:48:20 -0700 | [diff] [blame] | 493 | static inline void GenKey(const GrProcessor&, const GrGLSLCaps&, GrProcessorKeyBuilder* b); |
sugoi@google.com | 4775cba | 2013-04-17 13:46:56 +0000 | [diff] [blame] | 494 | |
wangyix | b1daa86 | 2015-08-18 11:29:31 -0700 | [diff] [blame] | 495 | protected: |
egdaniel | 018fb62 | 2015-10-28 07:26:40 -0700 | [diff] [blame^] | 496 | void onSetData(const GrGLSLProgramDataManager&, const GrProcessor&) override; |
wangyix | b1daa86 | 2015-08-18 11:29:31 -0700 | [diff] [blame] | 497 | |
sugoi@google.com | 4775cba | 2013-04-17 13:46:56 +0000 | [diff] [blame] | 498 | private: |
sugoi@google.com | 4775cba | 2013-04-17 13:46:56 +0000 | [diff] [blame] | 499 | |
egdaniel | 018fb62 | 2015-10-28 07:26:40 -0700 | [diff] [blame^] | 500 | GrGLSLProgramDataManager::UniformHandle fStitchDataUni; |
| 501 | SkPerlinNoiseShader::Type fType; |
| 502 | bool fStitchTiles; |
| 503 | int fNumOctaves; |
| 504 | GrGLSLProgramDataManager::UniformHandle fBaseFrequencyUni; |
senorblanco | f3b5027 | 2014-06-16 10:49:58 -0700 | [diff] [blame] | 505 | |
| 506 | private: |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 507 | typedef GrGLFragmentProcessor INHERITED; |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 508 | }; |
| 509 | |
| 510 | ///////////////////////////////////////////////////////////////////// |
| 511 | |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 512 | class GrPerlinNoiseEffect : public GrFragmentProcessor { |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 513 | public: |
bsalomon | 4a33952 | 2015-10-06 08:40:50 -0700 | [diff] [blame] | 514 | static GrFragmentProcessor* Create(SkPerlinNoiseShader::Type type, |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 515 | int numOctaves, bool stitchTiles, |
| 516 | SkPerlinNoiseShader::PaintingData* paintingData, |
| 517 | GrTexture* permutationsTexture, GrTexture* noiseTexture, |
bsalomon | c21b09e | 2015-08-28 18:46:56 -0700 | [diff] [blame] | 518 | const SkMatrix& matrix) { |
bsalomon | 4a33952 | 2015-10-06 08:40:50 -0700 | [diff] [blame] | 519 | return new GrPerlinNoiseEffect(type, numOctaves, stitchTiles, paintingData, |
bsalomon | c21b09e | 2015-08-28 18:46:56 -0700 | [diff] [blame] | 520 | permutationsTexture, noiseTexture, matrix); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 521 | } |
| 522 | |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 523 | virtual ~GrPerlinNoiseEffect() { delete fPaintingData; } |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 524 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 525 | const char* name() const override { return "PerlinNoise"; } |
joshualitt | eb2a676 | 2014-12-04 11:35:33 -0800 | [diff] [blame] | 526 | |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 527 | const SkPerlinNoiseShader::StitchData& stitchData() const { return fPaintingData->fStitchDataInit; } |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 528 | |
senorblanco | f3b5027 | 2014-06-16 10:49:58 -0700 | [diff] [blame] | 529 | SkPerlinNoiseShader::Type type() const { return fType; } |
| 530 | bool stitchTiles() const { return fStitchTiles; } |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 531 | const SkVector& baseFrequency() const { return fPaintingData->fBaseFrequency; } |
senorblanco | f3b5027 | 2014-06-16 10:49:58 -0700 | [diff] [blame] | 532 | int numOctaves() const { return fNumOctaves; } |
| 533 | const SkMatrix& matrix() const { return fCoordTransform.getMatrix(); } |
senorblanco | f3b5027 | 2014-06-16 10:49:58 -0700 | [diff] [blame] | 534 | |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 535 | private: |
wangyix | b1daa86 | 2015-08-18 11:29:31 -0700 | [diff] [blame] | 536 | GrGLFragmentProcessor* onCreateGLInstance() const override { |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 537 | return new GrGLPerlinNoise(*this); |
wangyix | b1daa86 | 2015-08-18 11:29:31 -0700 | [diff] [blame] | 538 | } |
| 539 | |
wangyix | 4b3050b | 2015-08-04 07:59:37 -0700 | [diff] [blame] | 540 | virtual void onGetGLProcessorKey(const GrGLSLCaps& caps, |
| 541 | GrProcessorKeyBuilder* b) const override { |
| 542 | GrGLPerlinNoise::GenKey(*this, caps, b); |
| 543 | } |
| 544 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 545 | bool onIsEqual(const GrFragmentProcessor& sBase) const override { |
joshualitt | 49586be | 2014-09-16 08:21:41 -0700 | [diff] [blame] | 546 | const GrPerlinNoiseEffect& s = sBase.cast<GrPerlinNoiseEffect>(); |
senorblanco | f3b5027 | 2014-06-16 10:49:58 -0700 | [diff] [blame] | 547 | return fType == s.fType && |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 548 | fPaintingData->fBaseFrequency == s.fPaintingData->fBaseFrequency && |
senorblanco | f3b5027 | 2014-06-16 10:49:58 -0700 | [diff] [blame] | 549 | fNumOctaves == s.fNumOctaves && |
| 550 | fStitchTiles == s.fStitchTiles && |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 551 | fPaintingData->fStitchDataInit == s.fPaintingData->fStitchDataInit; |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 552 | } |
| 553 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 554 | void onComputeInvariantOutput(GrInvariantOutput* inout) const override { |
egdaniel | 605dd0f | 2014-11-12 08:35:25 -0800 | [diff] [blame] | 555 | inout->setToUnknown(GrInvariantOutput::kWillNot_ReadInput); |
egdaniel | 1a8ecdf | 2014-10-03 06:24:12 -0700 | [diff] [blame] | 556 | } |
| 557 | |
bsalomon | 4a33952 | 2015-10-06 08:40:50 -0700 | [diff] [blame] | 558 | GrPerlinNoiseEffect(SkPerlinNoiseShader::Type type, |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 559 | int numOctaves, bool stitchTiles, |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 560 | SkPerlinNoiseShader::PaintingData* paintingData, |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 561 | GrTexture* permutationsTexture, GrTexture* noiseTexture, |
bsalomon | c21b09e | 2015-08-28 18:46:56 -0700 | [diff] [blame] | 562 | const SkMatrix& matrix) |
senorblanco | f3b5027 | 2014-06-16 10:49:58 -0700 | [diff] [blame] | 563 | : fType(type) |
senorblanco | f3b5027 | 2014-06-16 10:49:58 -0700 | [diff] [blame] | 564 | , fNumOctaves(numOctaves) |
| 565 | , fStitchTiles(stitchTiles) |
sugoi@google.com | 4775cba | 2013-04-17 13:46:56 +0000 | [diff] [blame] | 566 | , fPermutationsAccess(permutationsTexture) |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 567 | , fNoiseAccess(noiseTexture) |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 568 | , fPaintingData(paintingData) { |
joshualitt | eb2a676 | 2014-12-04 11:35:33 -0800 | [diff] [blame] | 569 | this->initClassID<GrPerlinNoiseEffect>(); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 570 | this->addTextureAccess(&fPermutationsAccess); |
| 571 | this->addTextureAccess(&fNoiseAccess); |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 572 | fCoordTransform.reset(kLocal_GrCoordSet, matrix); |
senorblanco | f3b5027 | 2014-06-16 10:49:58 -0700 | [diff] [blame] | 573 | this->addCoordTransform(&fCoordTransform); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 574 | } |
| 575 | |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 576 | GR_DECLARE_FRAGMENT_PROCESSOR_TEST; |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 577 | |
senorblanco | f3b5027 | 2014-06-16 10:49:58 -0700 | [diff] [blame] | 578 | SkPerlinNoiseShader::Type fType; |
| 579 | GrCoordTransform fCoordTransform; |
senorblanco | f3b5027 | 2014-06-16 10:49:58 -0700 | [diff] [blame] | 580 | int fNumOctaves; |
| 581 | bool fStitchTiles; |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 582 | GrTextureAccess fPermutationsAccess; |
| 583 | GrTextureAccess fNoiseAccess; |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 584 | SkPerlinNoiseShader::PaintingData *fPaintingData; |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 585 | |
sugoi@google.com | 4775cba | 2013-04-17 13:46:56 +0000 | [diff] [blame] | 586 | private: |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 587 | typedef GrFragmentProcessor INHERITED; |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 588 | }; |
| 589 | |
| 590 | ///////////////////////////////////////////////////////////////////// |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 591 | GR_DEFINE_FRAGMENT_PROCESSOR_TEST(GrPerlinNoiseEffect); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 592 | |
bsalomon | c21b09e | 2015-08-28 18:46:56 -0700 | [diff] [blame] | 593 | const GrFragmentProcessor* GrPerlinNoiseEffect::TestCreate(GrProcessorTestData* d) { |
joshualitt | 0067ff5 | 2015-07-08 14:26:19 -0700 | [diff] [blame] | 594 | int numOctaves = d->fRandom->nextRangeU(2, 10); |
| 595 | bool stitchTiles = d->fRandom->nextBool(); |
| 596 | SkScalar seed = SkIntToScalar(d->fRandom->nextU()); |
| 597 | SkISize tileSize = SkISize::Make(d->fRandom->nextRangeU(4, 4096), |
| 598 | d->fRandom->nextRangeU(4, 4096)); |
| 599 | SkScalar baseFrequencyX = d->fRandom->nextRangeScalar(0.01f, |
| 600 | 0.99f); |
| 601 | SkScalar baseFrequencyY = d->fRandom->nextRangeScalar(0.01f, |
| 602 | 0.99f); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 603 | |
bsalomon | 6d2a203 | 2015-08-29 06:27:29 -0700 | [diff] [blame] | 604 | SkAutoTUnref<SkShader> shader(d->fRandom->nextBool() ? |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 605 | SkPerlinNoiseShader::CreateFractalNoise(baseFrequencyX, baseFrequencyY, numOctaves, seed, |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 606 | stitchTiles ? &tileSize : nullptr) : |
commit-bot@chromium.org | 9fbbcca | 2014-04-01 16:09:37 +0000 | [diff] [blame] | 607 | SkPerlinNoiseShader::CreateTurbulence(baseFrequencyX, baseFrequencyY, numOctaves, seed, |
bsalomon | 6d2a203 | 2015-08-29 06:27:29 -0700 | [diff] [blame] | 608 | stitchTiles ? &tileSize : nullptr)); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 609 | |
joshualitt | 8ca93e7 | 2015-07-08 06:51:43 -0700 | [diff] [blame] | 610 | GrPaint grPaint; |
bsalomon | c21b09e | 2015-08-28 18:46:56 -0700 | [diff] [blame] | 611 | return shader->asFragmentProcessor(d->fContext, |
| 612 | GrTest::TestMatrix(d->fRandom), nullptr, |
bsalomon | 4a33952 | 2015-10-06 08:40:50 -0700 | [diff] [blame] | 613 | kNone_SkFilterQuality); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 614 | } |
sugoi@google.com | 4775cba | 2013-04-17 13:46:56 +0000 | [diff] [blame] | 615 | |
joshualitt | eb2a676 | 2014-12-04 11:35:33 -0800 | [diff] [blame] | 616 | GrGLPerlinNoise::GrGLPerlinNoise(const GrProcessor& processor) |
| 617 | : fType(processor.cast<GrPerlinNoiseEffect>().type()) |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 618 | , fStitchTiles(processor.cast<GrPerlinNoiseEffect>().stitchTiles()) |
| 619 | , fNumOctaves(processor.cast<GrPerlinNoiseEffect>().numOctaves()) { |
sugoi@google.com | 4775cba | 2013-04-17 13:46:56 +0000 | [diff] [blame] | 620 | } |
| 621 | |
wangyix | 7c157a9 | 2015-07-22 15:08:53 -0700 | [diff] [blame] | 622 | void GrGLPerlinNoise::emitCode(EmitArgs& args) { |
| 623 | GrGLFragmentBuilder* fsBuilder = args.fBuilder->getFragmentShaderBuilder(); |
| 624 | SkString vCoords = fsBuilder->ensureFSCoords2D(args.fCoords, 0); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 625 | |
wangyix | 7c157a9 | 2015-07-22 15:08:53 -0700 | [diff] [blame] | 626 | fBaseFrequencyUni = args.fBuilder->addUniform(GrGLProgramBuilder::kFragment_Visibility, |
bsalomon | 422f56f | 2014-12-09 10:18:12 -0800 | [diff] [blame] | 627 | kVec2f_GrSLType, kDefault_GrSLPrecision, |
| 628 | "baseFrequency"); |
wangyix | 7c157a9 | 2015-07-22 15:08:53 -0700 | [diff] [blame] | 629 | const char* baseFrequencyUni = args.fBuilder->getUniformCStr(fBaseFrequencyUni); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 630 | |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 631 | const char* stitchDataUni = nullptr; |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 632 | if (fStitchTiles) { |
wangyix | 7c157a9 | 2015-07-22 15:08:53 -0700 | [diff] [blame] | 633 | fStitchDataUni = args.fBuilder->addUniform(GrGLProgramBuilder::kFragment_Visibility, |
bsalomon | 422f56f | 2014-12-09 10:18:12 -0800 | [diff] [blame] | 634 | kVec2f_GrSLType, kDefault_GrSLPrecision, |
| 635 | "stitchData"); |
wangyix | 7c157a9 | 2015-07-22 15:08:53 -0700 | [diff] [blame] | 636 | stitchDataUni = args.fBuilder->getUniformCStr(fStitchDataUni); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 637 | } |
| 638 | |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 639 | // 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.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 645 | const char* stitchData = "stitchData"; |
| 646 | const char* ratio = "ratio"; |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 647 | const char* noiseVec = "noiseVec"; |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 648 | const char* noiseSmooth = "noiseSmooth"; |
senorblanco | ce6a354 | 2014-06-12 11:24:19 -0700 | [diff] [blame] | 649 | const char* floorVal = "floorVal"; |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 650 | const char* fractVal = "fractVal"; |
| 651 | const char* uv = "uv"; |
| 652 | const char* ab = "ab"; |
| 653 | const char* latticeIdx = "latticeIdx"; |
senorblanco | ce6a354 | 2014-06-12 11:24:19 -0700 | [diff] [blame] | 654 | const char* bcoords = "bcoords"; |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 655 | const char* lattice = "lattice"; |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 656 | 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.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 661 | // Add noise function |
egdaniel | 0d3f061 | 2015-10-21 10:45:48 -0700 | [diff] [blame] | 662 | static const GrGLSLShaderVar gPerlinNoiseArgs[] = { |
| 663 | GrGLSLShaderVar(chanCoord, kFloat_GrSLType), |
| 664 | GrGLSLShaderVar(noiseVec, kVec2f_GrSLType) |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 665 | }; |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 666 | |
egdaniel | 0d3f061 | 2015-10-21 10:45:48 -0700 | [diff] [blame] | 667 | static const GrGLSLShaderVar gPerlinNoiseStitchArgs[] = { |
| 668 | GrGLSLShaderVar(chanCoord, kFloat_GrSLType), |
| 669 | GrGLSLShaderVar(noiseVec, kVec2f_GrSLType), |
| 670 | GrGLSLShaderVar(stitchData, kVec2f_GrSLType) |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 671 | }; |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 672 | |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 673 | SkString noiseCode; |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 674 | |
senorblanco | ce6a354 | 2014-06-12 11:24:19 -0700 | [diff] [blame] | 675 | 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.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 679 | |
| 680 | // smooth curve : t * t * (3 - 2 * t) |
senorblanco | ce6a354 | 2014-06-12 11:24:19 -0700 | [diff] [blame] | 681 | noiseCode.appendf("\n\tvec2 %s = %s * %s * (vec2(3.0) - vec2(2.0) * %s);", |
| 682 | noiseSmooth, fractVal, fractVal, fractVal); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 683 | |
| 684 | // Adjust frequencies if we're stitching tiles |
| 685 | if (fStitchTiles) { |
commit-bot@chromium.org | 9839320 | 2013-07-04 18:13:05 +0000 | [diff] [blame] | 686 | noiseCode.appendf("\n\tif(%s.x >= %s.x) { %s.x -= %s.x; }", |
senorblanco | ce6a354 | 2014-06-12 11:24:19 -0700 | [diff] [blame] | 687 | floorVal, stitchData, floorVal, stitchData); |
commit-bot@chromium.org | 9839320 | 2013-07-04 18:13:05 +0000 | [diff] [blame] | 688 | noiseCode.appendf("\n\tif(%s.y >= %s.y) { %s.y -= %s.y; }", |
senorblanco | ce6a354 | 2014-06-12 11:24:19 -0700 | [diff] [blame] | 689 | floorVal, stitchData, floorVal, stitchData); |
| 690 | noiseCode.appendf("\n\tif(%s.z >= %s.x) { %s.z -= %s.x; }", |
| 691 | floorVal, stitchData, floorVal, stitchData); |
| 692 | noiseCode.appendf("\n\tif(%s.w >= %s.y) { %s.w -= %s.y; }", |
| 693 | floorVal, stitchData, floorVal, stitchData); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 694 | } |
| 695 | |
| 696 | // Get texture coordinates and normalize |
senorblanco | ce6a354 | 2014-06-12 11:24:19 -0700 | [diff] [blame] | 697 | noiseCode.appendf("\n\t%s = fract(floor(mod(%s, 256.0)) / vec4(256.0));\n", |
| 698 | floorVal, floorVal); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 699 | |
| 700 | // Get permutation for x |
| 701 | { |
| 702 | SkString xCoords(""); |
senorblanco | ce6a354 | 2014-06-12 11:24:19 -0700 | [diff] [blame] | 703 | xCoords.appendf("vec2(%s.x, 0.5)", floorVal); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 704 | |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 705 | noiseCode.appendf("\n\tvec2 %s;\n\t%s.x = ", latticeIdx, latticeIdx); |
wangyix | 7c157a9 | 2015-07-22 15:08:53 -0700 | [diff] [blame] | 706 | fsBuilder->appendTextureLookup(&noiseCode, args.fSamplers[0], xCoords.c_str(), |
| 707 | kVec2f_GrSLType); |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 708 | noiseCode.append(".r;"); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 709 | } |
| 710 | |
| 711 | // Get permutation for x + 1 |
| 712 | { |
| 713 | SkString xCoords(""); |
senorblanco | ce6a354 | 2014-06-12 11:24:19 -0700 | [diff] [blame] | 714 | xCoords.appendf("vec2(%s.z, 0.5)", floorVal); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 715 | |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 716 | noiseCode.appendf("\n\t%s.y = ", latticeIdx); |
wangyix | 7c157a9 | 2015-07-22 15:08:53 -0700 | [diff] [blame] | 717 | fsBuilder->appendTextureLookup(&noiseCode, args.fSamplers[0], xCoords.c_str(), |
| 718 | kVec2f_GrSLType); |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 719 | noiseCode.append(".r;"); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 720 | } |
| 721 | |
commit-bot@chromium.org | 344cf45 | 2013-06-17 14:19:01 +0000 | [diff] [blame] | 722 | #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.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 733 | // Get (x,y) coordinates with the permutated x |
senorblanco | ce6a354 | 2014-06-12 11:24:19 -0700 | [diff] [blame] | 734 | noiseCode.appendf("\n\tvec4 %s = fract(%s.xyxy + %s.yyww);", bcoords, latticeIdx, floorVal); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 735 | |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 736 | noiseCode.appendf("\n\n\tvec2 %s;", uv); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 737 | // Compute u, at offset (0,0) |
| 738 | { |
| 739 | SkString latticeCoords(""); |
senorblanco | ce6a354 | 2014-06-12 11:24:19 -0700 | [diff] [blame] | 740 | latticeCoords.appendf("vec2(%s.x, %s)", bcoords, chanCoord); |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 741 | noiseCode.appendf("\n\tvec4 %s = ", lattice); |
wangyix | 7c157a9 | 2015-07-22 15:08:53 -0700 | [diff] [blame] | 742 | fsBuilder->appendTextureLookup(&noiseCode, args.fSamplers[1], latticeCoords.c_str(), |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 743 | kVec2f_GrSLType); |
| 744 | noiseCode.appendf(".bgra;\n\t%s.x = ", uv); |
| 745 | noiseCode.appendf(dotLattice, lattice, lattice, inc8bit, fractVal); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 746 | } |
| 747 | |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 748 | noiseCode.appendf("\n\t%s.x -= 1.0;", fractVal); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 749 | // Compute v, at offset (-1,0) |
| 750 | { |
| 751 | SkString latticeCoords(""); |
senorblanco | ce6a354 | 2014-06-12 11:24:19 -0700 | [diff] [blame] | 752 | latticeCoords.appendf("vec2(%s.y, %s)", bcoords, chanCoord); |
commit-bot@chromium.org | 344cf45 | 2013-06-17 14:19:01 +0000 | [diff] [blame] | 753 | noiseCode.append("\n\tlattice = "); |
wangyix | 7c157a9 | 2015-07-22 15:08:53 -0700 | [diff] [blame] | 754 | fsBuilder->appendTextureLookup(&noiseCode, args.fSamplers[1], latticeCoords.c_str(), |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 755 | kVec2f_GrSLType); |
| 756 | noiseCode.appendf(".bgra;\n\t%s.y = ", uv); |
| 757 | noiseCode.appendf(dotLattice, lattice, lattice, inc8bit, fractVal); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 758 | } |
| 759 | |
| 760 | // Compute 'a' as a linear interpolation of 'u' and 'v' |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 761 | 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.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 763 | |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 764 | noiseCode.appendf("\n\t%s.y -= 1.0;", fractVal); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 765 | // Compute v, at offset (-1,-1) |
| 766 | { |
| 767 | SkString latticeCoords(""); |
senorblanco | ce6a354 | 2014-06-12 11:24:19 -0700 | [diff] [blame] | 768 | latticeCoords.appendf("vec2(%s.w, %s)", bcoords, chanCoord); |
commit-bot@chromium.org | 344cf45 | 2013-06-17 14:19:01 +0000 | [diff] [blame] | 769 | noiseCode.append("\n\tlattice = "); |
wangyix | 7c157a9 | 2015-07-22 15:08:53 -0700 | [diff] [blame] | 770 | fsBuilder->appendTextureLookup(&noiseCode, args.fSamplers[1], latticeCoords.c_str(), |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 771 | kVec2f_GrSLType); |
| 772 | noiseCode.appendf(".bgra;\n\t%s.y = ", uv); |
| 773 | noiseCode.appendf(dotLattice, lattice, lattice, inc8bit, fractVal); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 774 | } |
| 775 | |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 776 | noiseCode.appendf("\n\t%s.x += 1.0;", fractVal); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 777 | // Compute u, at offset (0,-1) |
| 778 | { |
| 779 | SkString latticeCoords(""); |
senorblanco | ce6a354 | 2014-06-12 11:24:19 -0700 | [diff] [blame] | 780 | latticeCoords.appendf("vec2(%s.z, %s)", bcoords, chanCoord); |
commit-bot@chromium.org | 344cf45 | 2013-06-17 14:19:01 +0000 | [diff] [blame] | 781 | noiseCode.append("\n\tlattice = "); |
wangyix | 7c157a9 | 2015-07-22 15:08:53 -0700 | [diff] [blame] | 782 | fsBuilder->appendTextureLookup(&noiseCode, args.fSamplers[1], latticeCoords.c_str(), |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 783 | kVec2f_GrSLType); |
| 784 | noiseCode.appendf(".bgra;\n\t%s.x = ", uv); |
| 785 | noiseCode.appendf(dotLattice, lattice, lattice, inc8bit, fractVal); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 786 | } |
| 787 | |
| 788 | // Compute 'b' as a linear interpolation of 'u' and 'v' |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 789 | noiseCode.appendf("\n\t%s.y = mix(%s.x, %s.y, %s.x);", ab, uv, uv, noiseSmooth); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 790 | // Compute the noise as a linear interpolation of 'a' and 'b' |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 791 | noiseCode.appendf("\n\treturn mix(%s.x, %s.y, %s.y);\n", ab, ab, noiseSmooth); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 792 | |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 793 | SkString noiseFuncName; |
| 794 | if (fStitchTiles) { |
joshualitt | 30ba436 | 2014-08-21 20:18:45 -0700 | [diff] [blame] | 795 | fsBuilder->emitFunction(kFloat_GrSLType, |
commit-bot@chromium.org | 74a3a21 | 2013-08-30 19:43:59 +0000 | [diff] [blame] | 796 | "perlinnoise", SK_ARRAY_COUNT(gPerlinNoiseStitchArgs), |
| 797 | gPerlinNoiseStitchArgs, noiseCode.c_str(), &noiseFuncName); |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 798 | } else { |
joshualitt | 30ba436 | 2014-08-21 20:18:45 -0700 | [diff] [blame] | 799 | fsBuilder->emitFunction(kFloat_GrSLType, |
commit-bot@chromium.org | 74a3a21 | 2013-08-30 19:43:59 +0000 | [diff] [blame] | 800 | "perlinnoise", SK_ARRAY_COUNT(gPerlinNoiseArgs), |
| 801 | gPerlinNoiseArgs, noiseCode.c_str(), &noiseFuncName); |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 802 | } |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 803 | |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 804 | // There are rounding errors if the floor operation is not performed here |
joshualitt | 30ba436 | 2014-08-21 20:18:45 -0700 | [diff] [blame] | 805 | fsBuilder->codeAppendf("\n\t\tvec2 %s = floor(%s.xy) * %s;", |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 806 | noiseVec, vCoords.c_str(), baseFrequencyUni); |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 807 | |
| 808 | // Clear the color accumulator |
wangyix | 7c157a9 | 2015-07-22 15:08:53 -0700 | [diff] [blame] | 809 | fsBuilder->codeAppendf("\n\t\t%s = vec4(0.0);", args.fOutputColor); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 810 | |
| 811 | if (fStitchTiles) { |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 812 | // Set up TurbulenceInitial stitch values. |
joshualitt | 30ba436 | 2014-08-21 20:18:45 -0700 | [diff] [blame] | 813 | fsBuilder->codeAppendf("\n\t\tvec2 %s = %s;", stitchData, stitchDataUni); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 814 | } |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 815 | |
joshualitt | 30ba436 | 2014-08-21 20:18:45 -0700 | [diff] [blame] | 816 | fsBuilder->codeAppendf("\n\t\tfloat %s = 1.0;", ratio); |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 817 | |
| 818 | // Loop over all octaves |
joshualitt | 30ba436 | 2014-08-21 20:18:45 -0700 | [diff] [blame] | 819 | fsBuilder->codeAppendf("\n\t\tfor (int octave = 0; octave < %d; ++octave) {", fNumOctaves); |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 820 | |
wangyix | 7c157a9 | 2015-07-22 15:08:53 -0700 | [diff] [blame] | 821 | fsBuilder->codeAppendf("\n\t\t\t%s += ", args.fOutputColor); |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 822 | if (fType != SkPerlinNoiseShader::kFractalNoise_Type) { |
joshualitt | 30ba436 | 2014-08-21 20:18:45 -0700 | [diff] [blame] | 823 | fsBuilder->codeAppend("abs("); |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 824 | } |
| 825 | if (fStitchTiles) { |
joshualitt | 30ba436 | 2014-08-21 20:18:45 -0700 | [diff] [blame] | 826 | fsBuilder->codeAppendf( |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 827 | "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 { |
joshualitt | 30ba436 | 2014-08-21 20:18:45 -0700 | [diff] [blame] | 834 | fsBuilder->codeAppendf( |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 835 | "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) { |
joshualitt | 30ba436 | 2014-08-21 20:18:45 -0700 | [diff] [blame] | 843 | fsBuilder->codeAppendf(")"); // end of "abs(" |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 844 | } |
joshualitt | 30ba436 | 2014-08-21 20:18:45 -0700 | [diff] [blame] | 845 | fsBuilder->codeAppendf(" * %s;", ratio); |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 846 | |
joshualitt | 30ba436 | 2014-08-21 20:18:45 -0700 | [diff] [blame] | 847 | fsBuilder->codeAppendf("\n\t\t\t%s *= vec2(2.0);", noiseVec); |
| 848 | fsBuilder->codeAppendf("\n\t\t\t%s *= 0.5;", ratio); |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 849 | |
| 850 | if (fStitchTiles) { |
joshualitt | 30ba436 | 2014-08-21 20:18:45 -0700 | [diff] [blame] | 851 | fsBuilder->codeAppendf("\n\t\t\t%s *= vec2(2.0);", stitchData); |
sugoi@google.com | d537af5 | 2013-06-10 13:59:25 +0000 | [diff] [blame] | 852 | } |
joshualitt | 30ba436 | 2014-08-21 20:18:45 -0700 | [diff] [blame] | 853 | fsBuilder->codeAppend("\n\t\t}"); // end of the for loop on octaves |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 854 | |
| 855 | if (fType == SkPerlinNoiseShader::kFractalNoise_Type) { |
| 856 | // The value of turbulenceFunctionResult comes from ((turbulenceFunctionResult) + 1) / 2 |
| 857 | // by fractalNoise and (turbulenceFunctionResult) by turbulence. |
wangyix | 7c157a9 | 2015-07-22 15:08:53 -0700 | [diff] [blame] | 858 | fsBuilder->codeAppendf("\n\t\t%s = %s * vec4(0.5) + vec4(0.5);", |
| 859 | args.fOutputColor,args.fOutputColor); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 860 | } |
| 861 | |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 862 | // Clamp values |
wangyix | 7c157a9 | 2015-07-22 15:08:53 -0700 | [diff] [blame] | 863 | fsBuilder->codeAppendf("\n\t\t%s = clamp(%s, 0.0, 1.0);", args.fOutputColor, args.fOutputColor); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 864 | |
| 865 | // Pre-multiply the result |
joshualitt | 30ba436 | 2014-08-21 20:18:45 -0700 | [diff] [blame] | 866 | fsBuilder->codeAppendf("\n\t\t%s = vec4(%s.rgb * %s.aaa, %s.a);\n", |
wangyix | 7c157a9 | 2015-07-22 15:08:53 -0700 | [diff] [blame] | 867 | args.fOutputColor, args.fOutputColor, |
| 868 | args.fOutputColor, args.fOutputColor); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 869 | } |
| 870 | |
jvanverth | cfc1886 | 2015-04-28 08:48:20 -0700 | [diff] [blame] | 871 | void GrGLPerlinNoise::GenKey(const GrProcessor& processor, const GrGLSLCaps&, |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 872 | GrProcessorKeyBuilder* b) { |
| 873 | const GrPerlinNoiseEffect& turbulence = processor.cast<GrPerlinNoiseEffect>(); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 874 | |
bsalomon | 63e99f7 | 2014-07-21 08:03:14 -0700 | [diff] [blame] | 875 | uint32_t key = turbulence.numOctaves(); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 876 | |
| 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 | |
bsalomon | 63e99f7 | 2014-07-21 08:03:14 -0700 | [diff] [blame] | 895 | b->add32(key); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 896 | } |
| 897 | |
egdaniel | 018fb62 | 2015-10-28 07:26:40 -0700 | [diff] [blame^] | 898 | void GrGLPerlinNoise::onSetData(const GrGLSLProgramDataManager& pdman, |
| 899 | const GrProcessor& processor) { |
wangyix | b1daa86 | 2015-08-18 11:29:31 -0700 | [diff] [blame] | 900 | INHERITED::onSetData(pdman, processor); |
senorblanco | f3b5027 | 2014-06-16 10:49:58 -0700 | [diff] [blame] | 901 | |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 902 | const GrPerlinNoiseEffect& turbulence = processor.cast<GrPerlinNoiseEffect>(); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 903 | |
| 904 | const SkVector& baseFrequency = turbulence.baseFrequency(); |
kkinnunen | 7510b22 | 2014-07-30 00:04:16 -0700 | [diff] [blame] | 905 | pdman.set2f(fBaseFrequencyUni, baseFrequency.fX, baseFrequency.fY); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 906 | |
sugoi@google.com | 4775cba | 2013-04-17 13:46:56 +0000 | [diff] [blame] | 907 | if (turbulence.stitchTiles()) { |
| 908 | const SkPerlinNoiseShader::StitchData& stitchData = turbulence.stitchData(); |
kkinnunen | 7510b22 | 2014-07-30 00:04:16 -0700 | [diff] [blame] | 909 | pdman.set2f(fStitchDataUni, SkIntToScalar(stitchData.fWidth), |
commit-bot@chromium.org | 9839320 | 2013-07-04 18:13:05 +0000 | [diff] [blame] | 910 | SkIntToScalar(stitchData.fHeight)); |
sugoi@google.com | 4775cba | 2013-04-17 13:46:56 +0000 | [diff] [blame] | 911 | } |
| 912 | } |
| 913 | |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 914 | ///////////////////////////////////////////////////////////////////// |
bsalomon | c21b09e | 2015-08-28 18:46:56 -0700 | [diff] [blame] | 915 | const GrFragmentProcessor* SkPerlinNoiseShader::asFragmentProcessor( |
| 916 | GrContext* context, |
| 917 | const SkMatrix& viewM, |
| 918 | const SkMatrix* externalLocalMatrix, |
bsalomon | 4a33952 | 2015-10-06 08:40:50 -0700 | [diff] [blame] | 919 | SkFilterQuality) const { |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 920 | SkASSERT(context); |
mtklein | 3f3b3d0 | 2014-12-01 11:47:08 -0800 | [diff] [blame] | 921 | |
commit-bot@chromium.org | 96fb748 | 2014-05-09 20:28:11 +0000 | [diff] [blame] | 922 | SkMatrix localMatrix = this->getLocalMatrix(); |
| 923 | if (externalLocalMatrix) { |
| 924 | localMatrix.preConcat(*externalLocalMatrix); |
| 925 | } |
| 926 | |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 927 | SkMatrix matrix = viewM; |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 928 | matrix.preConcat(localMatrix); |
| 929 | |
commit-bot@chromium.org | c2a0ea6 | 2013-11-06 10:08:38 +0000 | [diff] [blame] | 930 | if (0 == fNumOctaves) { |
commit-bot@chromium.org | c2a0ea6 | 2013-11-06 10:08:38 +0000 | [diff] [blame] | 931 | if (kFractalNoise_Type == fType) { |
bsalomon | c21b09e | 2015-08-28 18:46:56 -0700 | [diff] [blame] | 932 | // 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)); |
bsalomon | f1b7a1d | 2015-09-28 06:26:28 -0700 | [diff] [blame] | 936 | return GrFragmentProcessor::MulOutputByInputAlpha(inner); |
reed | cff10b2 | 2015-03-03 06:41:45 -0800 | [diff] [blame] | 937 | } |
bsalomon | c21b09e | 2015-08-28 18:46:56 -0700 | [diff] [blame] | 938 | // Emit zero. |
| 939 | return GrConstColorProcessor::Create(0x0, GrConstColorProcessor::kIgnore_InputMode); |
commit-bot@chromium.org | c2a0ea6 | 2013-11-06 10:08:38 +0000 | [diff] [blame] | 940 | } |
| 941 | |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 942 | // Either we don't stitch tiles, either we have a valid tile size |
| 943 | SkASSERT(!fStitchTiles || !fTileSize.isEmpty()); |
| 944 | |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 945 | SkPerlinNoiseShader::PaintingData* paintingData = |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 946 | new PaintingData(fTileSize, fSeed, fBaseFrequencyX, fBaseFrequencyY, matrix); |
bsalomon | bcf0a52 | 2014-10-08 08:40:09 -0700 | [diff] [blame] | 947 | SkAutoTUnref<GrTexture> permutationsTexture( |
bsalomon | afa95e2 | 2015-10-12 10:39:46 -0700 | [diff] [blame] | 948 | GrRefCachedBitmapTexture(context, paintingData->getPermutationsBitmap(), |
| 949 | GrTextureParams::ClampNoFilter())); |
bsalomon | bcf0a52 | 2014-10-08 08:40:09 -0700 | [diff] [blame] | 950 | SkAutoTUnref<GrTexture> noiseTexture( |
bsalomon | afa95e2 | 2015-10-12 10:39:46 -0700 | [diff] [blame] | 951 | GrRefCachedBitmapTexture(context, paintingData->getNoiseBitmap(), |
| 952 | GrTextureParams::ClampNoFilter())); |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 953 | |
joshualitt | 5531d51 | 2014-12-17 15:50:11 -0800 | [diff] [blame] | 954 | SkMatrix m = viewM; |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 955 | m.setTranslateX(-localMatrix.getTranslateX() + SK_Scalar1); |
| 956 | m.setTranslateY(-localMatrix.getTranslateY() + SK_Scalar1); |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 957 | if ((permutationsTexture) && (noiseTexture)) { |
bsalomon | c21b09e | 2015-08-28 18:46:56 -0700 | [diff] [blame] | 958 | SkAutoTUnref<GrFragmentProcessor> inner( |
bsalomon | 4a33952 | 2015-10-06 08:40:50 -0700 | [diff] [blame] | 959 | GrPerlinNoiseEffect::Create(fType, |
bsalomon | c21b09e | 2015-08-28 18:46:56 -0700 | [diff] [blame] | 960 | fNumOctaves, |
| 961 | fStitchTiles, |
| 962 | paintingData, |
| 963 | permutationsTexture, noiseTexture, |
| 964 | m)); |
bsalomon | f1b7a1d | 2015-09-28 06:26:28 -0700 | [diff] [blame] | 965 | return GrFragmentProcessor::MulOutputByInputAlpha(inner); |
senorblanco | ca6a7c2 | 2014-06-27 13:35:52 -0700 | [diff] [blame] | 966 | } |
bsalomon | c21b09e | 2015-08-28 18:46:56 -0700 | [diff] [blame] | 967 | delete paintingData; |
| 968 | return nullptr; |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 969 | } |
| 970 | |
| 971 | #endif |
| 972 | |
commit-bot@chromium.org | 0f10f7b | 2014-03-13 18:02:17 +0000 | [diff] [blame] | 973 | #ifndef SK_IGNORE_TO_STRING |
sugoi@google.com | e3b4c50 | 2013-04-05 13:47:09 +0000 | [diff] [blame] | 974 | void 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 |