KdotJPG / OpenSimplex2

Successors to OpenSimplex Noise, plus updated OpenSimplex.
Creative Commons Zero v1.0 Universal
559 stars 53 forks source link

Port OpenSimplex2F to C #11

Closed smcameron closed 2 years ago

smcameron commented 2 years ago

Signed-off-by: Stephen M. Cameron stephenmcameron@gmail.com

Took a stab at porting OpenSimplex2F to C. Haven't done a lot of testing but it was pretty straightforward. I did notice an overflow of int64_t when computing the seed value (detected by -fsanitize=undefined), I cast them to uint64_t and that went away, and it still seemed to work. If this is acceptable, perhaps I'll try OpenSimplex2S tomorrow.