diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-05-20 12:42:39 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-05-20 12:42:39 +0200 |
| commit | 5d6b59778a7346317ddfc549c350c0960a7a54a7 (patch) | |
| tree | 85d85e59ae8943ee486aebfe2b0760f0ee3a5b8e /inc/mandel.h | |
| parent | b9915d27b0a21a97540d6ed193f338da3732e1a1 (diff) | |
| download | mandelbrot-5d6b59778a7346317ddfc549c350c0960a7a54a7.tar.gz mandelbrot-5d6b59778a7346317ddfc549c350c0960a7a54a7.tar.bz2 mandelbrot-5d6b59778a7346317ddfc549c350c0960a7a54a7.zip | |
Added Smoothness and super sampling
Diffstat (limited to 'inc/mandel.h')
| -rw-r--r-- | inc/mandel.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/inc/mandel.h b/inc/mandel.h index f220132..0383a39 100644 --- a/inc/mandel.h +++ b/inc/mandel.h @@ -69,6 +69,8 @@ typedef struct int imag_end; int iterations; int texture; + int smooth; + int samples; } location; } Shader; @@ -93,6 +95,8 @@ typedef struct double imag_start; double imag_end; int iterations; + bool smooth; + float samples; } State; // mandelbrot.c |
