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:
Diffstat (limited to 'source/blender/blenlib/BLI_rand.h')
-rw-r--r--source/blender/blenlib/BLI_rand.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_rand.h b/source/blender/blenlib/BLI_rand.h
index 6513dea8115..c352016ff53 100644
--- a/source/blender/blenlib/BLI_rand.h
+++ b/source/blender/blenlib/BLI_rand.h
@@ -65,5 +65,8 @@ void BLI_storerand (unsigned int loc_r[2]);
*/
void BLI_restorerand (unsigned int loc[2]);
+ /** Shuffle an array randomly using the given seed. */
+void BLI_array_randomize (void *data, int elemSize, int numElems, unsigned int seed);
+
#endif