diff options
author | Leonard Kugis <leonardkugis@gmail.com> | 2018-01-26 01:12:49 +0100 |
---|---|---|
committer | Leonard Kugis <leonardkugis@gmail.com> | 2018-01-26 01:12:49 +0100 |
commit | 1c3ea27064257d8cf7b9f36b0388b8cf2e94ab08 (patch) | |
tree | 9b2d9a0dbb2940158b2fb734325cfc360efac6f4 /src/sets.h | |
parent | e6c241add375353c1c80b0e3915a6505dbd5db9a (diff) |
Skeleton for OpenCL rendering, cleaned up alot, WIP and crashing
Diffstat (limited to 'src/sets.h')
-rw-r--r-- | src/sets.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -10,9 +10,9 @@ #include "defs.h" -u32 mandelbrot_s(long double x, long double y, u32 iterations); -u32 mandelbrot_r(long double x, long double y, u32 iterations); -u32 _mandelbrot_r(long double x, long double y, long double zx, long double zy, u32 n, u32 iterations, long double threshold); -u32 julia(long double x, long double y, u32 iterations); +u32 mandelbrot_s(d64 x, d64 y, u32 iterations); +u32 mandelbrot_r(d64 x, d64 y, u32 iterations); +u32 _mandelbrot_r(d64 x, d64 y, d64 zx, d64 zy, u32 n, u32 iterations, d64 threshold); +u32 julia(d64 x, d64 y, u32 iterations); #endif /* SETS_H_ */ |