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:
authorCampbell Barton <ideasman42@gmail.com>2020-11-06 02:38:51 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-11-06 04:32:54 +0300
commit155f42a12f45094e248d0f1e2a1dbd4ed6be8e85 (patch)
treea814d39d4f3f69fd2ff8ad2fc3c8dd34dfd8c4db /source/blender/blenlib/BLI_noise.h
parent548b3516479b478653b4eb074bbdcea535c4071f (diff)
Cleanup: remove unused BLI_turbulence1
A slightly modified version of BLI_turbulence1, unused for years.
Diffstat (limited to 'source/blender/blenlib/BLI_noise.h')
-rw-r--r--source/blender/blenlib/BLI_noise.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_noise.h b/source/blender/blenlib/BLI_noise.h
index e9279f03e24..8cb30ef62c8 100644
--- a/source/blender/blenlib/BLI_noise.h
+++ b/source/blender/blenlib/BLI_noise.h
@@ -31,7 +31,6 @@ extern "C" {
float BLI_hnoise(float noisesize, float x, float y, float z);
float BLI_hnoisep(float noisesize, float x, float y, float z);
float BLI_turbulence(float noisesize, float x, float y, float z, int nr);
-float BLI_turbulence1(float noisesize, float x, float y, float z, int nr);
/* newnoise: generic noise & turbulence functions
* to replace the above BLI_hnoise/p & BLI_turbulence/1.
* This is done so different noise basis functions can be used */