HomeSort by relevance Sort by last modified time
    Searched defs:noisePositionIntegerValue (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/skia/src/effects/
SkPerlinNoiseShader.cpp 364 int noisePositionIntegerValue;
369 noisePositionIntegerValue = SkScalarFloorToInt(position);
370 noisePositionFractionValue = position - SkIntToScalar(noisePositionIntegerValue);
378 noiseX.noisePositionIntegerValue =
379 checkNoise(noiseX.noisePositionIntegerValue, stitchData.fWrapX, stitchData.fWidth);
380 noiseY.noisePositionIntegerValue =
381 checkNoise(noiseY.noisePositionIntegerValue, stitchData.fWrapY, stitchData.fHeight);
383 noiseX.noisePositionIntegerValue &= kBlockMask;
384 noiseY.noisePositionIntegerValue &= kBlockMask;
386 paintingData.fLatticeSelector[noiseX.noisePositionIntegerValue]
    [all...]
  /external/skia/src/effects/
SkPerlinNoiseShader.cpp 364 int noisePositionIntegerValue;
369 noisePositionIntegerValue = SkScalarFloorToInt(position);
370 noisePositionFractionValue = position - SkIntToScalar(noisePositionIntegerValue);
378 noiseX.noisePositionIntegerValue =
379 checkNoise(noiseX.noisePositionIntegerValue, stitchData.fWrapX, stitchData.fWidth);
380 noiseY.noisePositionIntegerValue =
381 checkNoise(noiseY.noisePositionIntegerValue, stitchData.fWrapY, stitchData.fHeight);
383 noiseX.noisePositionIntegerValue &= kBlockMask;
384 noiseY.noisePositionIntegerValue &= kBlockMask;
386 paintingData.fLatticeSelector[noiseX.noisePositionIntegerValue]
    [all...]

Completed in 52 milliseconds