From b9d887fc3cd3ae26c678bf35bc90c4f1d6b03888 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Fri, 13 Feb 2015 16:18:10 +0100 Subject: Unify prng use MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Finally drop all isaac references, do not use system rng any more. Drop rng state from flam3_frame – it was not used anyway. --- xorshift.h | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 xorshift.h (limited to 'xorshift.h') diff --git a/xorshift.h b/xorshift.h deleted file mode 100644 index 64c3ea2..0000000 --- a/xorshift.h +++ /dev/null @@ -1,14 +0,0 @@ -#pragma once - -#include - -#define XORSHIFT_S 16 - -typedef struct { - uint64_t s[XORSHIFT_S]; - int p; -} randctx; - -uint64_t xorshift_step (randctx * const st); -void xorshift_seed (randctx * const st); - -- cgit v1.2.3