intel/nir: Stop using nir_lower_vars_to_scratch
[mesa.git] / src / util / rand_xor.h
index d5144e98230368e6ba21ddd5556cfc5d7d189e4b..b55598f228a57e4f5b447be435ee9f99f35df94b 100644 (file)
 #define RAND_XOR_H
 
 #include <stdint.h>
+#include <stdbool.h>
 
 uint64_t
-rand_xorshift128plus(uint64_t *seed);
+rand_xorshift128plus(uint64_t seed[2]);
+
+void
+s_rand_xorshift128plus(uint64_t seed[2], bool randomised_seed);
 
 #endif /* RAND_XOR_H */