Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Carlisle <carlisle.b3d@gmail.com>2020-11-04 10:06:33 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2020-11-04 10:07:21 +0300
commit029e1f066e00ed4d07b46419fc6176f3e501e30e (patch)
tree2564c7556d8f720588e995fe7577e8d2973d9c05 /source/blender/blenlib/BLI_noise.h
parent72f8a08880515ae8e31b5909cc3182c1cc9b6913 (diff)
Cleanup: Add BLI prefix to some BLI_noise functions
Diffstat (limited to 'source/blender/blenlib/BLI_noise.h')
-rw-r--r--source/blender/blenlib/BLI_noise.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/source/blender/blenlib/BLI_noise.h b/source/blender/blenlib/BLI_noise.h
index cb66b0552df..267f1361a89 100644
--- a/source/blender/blenlib/BLI_noise.h
+++ b/source/blender/blenlib/BLI_noise.h
@@ -39,11 +39,11 @@ float BLI_gNoise(float noisesize, float x, float y, float z, int hard, int noise
float BLI_gTurbulence(
float noisesize, float x, float y, float z, int oct, int hard, int noisebasis);
/* newnoise: musgrave functions */
-float mg_fBm(float x, float y, float z, float H, float lacunarity, float octaves, int noisebasis);
-float mg_MultiFractal(
+float BLI_mg_fBm(float x, float y, float z, float H, float lacunarity, float octaves, int noisebasis);
+float BLI_mg_MultiFractal(
float x, float y, float z, float H, float lacunarity, float octaves, int noisebasis);
-float mg_VLNoise(float x, float y, float z, float distortion, int nbas1, int nbas2);
-float mg_HeteroTerrain(float x,
+float BLI_mg_VLNoise(float x, float y, float z, float distortion, int nbas1, int nbas2);
+float BLI_mg_HeteroTerrain(float x,
float y,
float z,
float H,
@@ -51,7 +51,7 @@ float mg_HeteroTerrain(float x,
float octaves,
float offset,
int noisebasis);
-float mg_HybridMultiFractal(float x,
+float BLI_mg_HybridMultiFractal(float x,
float y,
float z,
float H,
@@ -60,7 +60,7 @@ float mg_HybridMultiFractal(float x,
float offset,
float gain,
int noisebasis);
-float mg_RidgedMultiFractal(float x,
+float BLI_mg_RidgedMultiFractal(float x,
float y,
float z,
float H,
@@ -70,10 +70,10 @@ float mg_RidgedMultiFractal(float x,
float gain,
int noisebasis);
/* newnoise: voronoi */
-void voronoi(float x, float y, float z, float *da, float *pa, float me, int dtype);
-/* newnoise: cellNoise & cellNoiseV (for vector/point/color) */
-float cellNoise(float x, float y, float z);
-void cellNoiseV(float x, float y, float z, float r_ca[3]);
+void BLI_voronoi(float x, float y, float z, float *da, float *pa, float me, int dtype);
+/* newnoise: BLI_cellNoise & BLI_cellNoiseV (for vector/point/color) */
+float BLI_cellNoise(float x, float y, float z);
+void BLI_cellNoiseV(float x, float y, float z, float r_ca[3]);
#ifdef __cplusplus
}