From 2a6df7dfe5ae9c25780166771c56ff921cc90f63 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 20 Feb 2020 15:38:58 +1100 Subject: Cleanup: use named unsigned types in the Python API --- source/blender/python/mathutils/mathutils_noise.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source/blender/python/mathutils/mathutils_noise.c') diff --git a/source/blender/python/mathutils/mathutils_noise.c b/source/blender/python/mathutils/mathutils_noise.c index 1b438072329..8ec0c9ce44a 100644 --- a/source/blender/python/mathutils/mathutils_noise.c +++ b/source/blender/python/mathutils/mathutils_noise.c @@ -93,14 +93,14 @@ #define MIXBITS(u, v) (((u)&UMASK) | ((v)&LMASK)) #define TWIST(u, v) ((MIXBITS(u, v) >> 1) ^ ((v)&1UL ? MATRIX_A : 0UL)) -static unsigned long state[N]; /* the array for the state vector */ +static ulong state[N]; /* the array for the state vector */ static int left = 1; static int initf = 0; -static unsigned long *next; +static ulong *next; static float state_offset_vector[3 * 3]; /* initializes state[N] with a seed */ -static void init_genrand(unsigned long s) +static void init_genrand(ulong s) { int j; state[0] = s & 0xffffffffUL; @@ -117,7 +117,7 @@ static void init_genrand(unsigned long s) /* update vector offset */ { - const unsigned long *state_offset = &state[N - ARRAY_SIZE(state_offset_vector)]; + const ulong *state_offset = &state[N - ARRAY_SIZE(state_offset_vector)]; const float range = 32; /* range in both pos/neg direction */ for (j = 0; j < ARRAY_SIZE(state_offset_vector); j++, state_offset++) { /* overflow is fine here */ @@ -128,7 +128,7 @@ static void init_genrand(unsigned long s) static void next_state(void) { - unsigned long *p = state; + ulong *p = state; int j; /* if init_genrand() has not been called, */ @@ -166,7 +166,7 @@ static void setRndSeed(int seed) /* float number in range [0, 1) using the mersenne twister rng */ static float frand(void) { - unsigned long y; + ulong y; if (--left == 0) { next_state(); -- cgit v1.2.3