Flutter Engine
The Flutter Engine
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Enumerations
SkPerlinNoiseShaderType.h File Reference

Go to the source code of this file.

Enumerations

enum class  SkPerlinNoiseShaderType { kFractalNoise , kTurbulence , kLast = kTurbulence }
 

Enumeration Type Documentation

◆ SkPerlinNoiseShaderType

enum class SkPerlinNoiseShaderType
strong

About the noise types : the difference between the first two is just minor tweaks to the algorithm; they're not two entirely different noises. The output looks different, but once the noise is generated in the [1, -1] range, the output is brought back in the [0, 1] range by doing: kFractalNoise : noise * 0.5 + 0.5 kTurbulence : abs(noise) Very little differs between the two types, although you can tell the difference visually.

Enumerator
kFractalNoise 
kTurbulence 
kLast 

Definition at line 18 of file SkPerlinNoiseShaderType.h.

18{ kFractalNoise, kTurbulence, kLast = kTurbulence };