From 5d6b59778a7346317ddfc549c350c0960a7a54a7 Mon Sep 17 00:00:00 2001 From: Charles Date: Wed, 20 May 2020 12:42:39 +0200 Subject: Added Smoothness and super sampling --- inc/mandel.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'inc/mandel.h') 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 -- cgit