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
path: root/intern
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2020-01-31 15:03:15 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2020-01-31 15:03:15 +0300
commit53d805abcbf0a68155025a186d8a3c60de4af374 (patch)
tree1855ef1e13c34af39d2cbc5fe8e3f0c7ee75619d /intern
parent6ab359e525204e476cfa9c772e80d37d3d2c5014 (diff)
parentc82b8c5944d85a24fcb1b6552e970accb4628c9d (diff)
Merge branch 'blender-v2.82-release'
Diffstat (limited to 'intern')
-rw-r--r--intern/mikktspace/mikktspace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/mikktspace/mikktspace.c b/intern/mikktspace/mikktspace.c
index 285529298eb..47bed53ed28 100644
--- a/intern/mikktspace/mikktspace.c
+++ b/intern/mikktspace/mikktspace.c
@@ -1392,7 +1392,7 @@ static void QuickSort(int *pSortBuffer, int iLeft, int iRight, unsigned int uSee
// Random
unsigned int t = uSeed & 31;
- t = (uSeed << t) | (uSeed >> (32 - t));
+ t = rotl(uSeed, t);
uSeed = uSeed + t + 3;
// Random end