summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mandel.cu5
1 files changed, 4 insertions, 1 deletions
diff --git a/mandel.cu b/mandel.cu
index 064cf86..480daed 100644
--- a/mandel.cu
+++ b/mandel.cu
@@ -162,7 +162,10 @@ void mandel_render(uint8_t *dst, Mandel *ctx, const Params *par) {
int main() {
Mandel *ctx = mandel_init(1920, 1080);
Params par = mandel_default_params();
- par.cy = 0.5;
+ par.cx = -0.73844331961137488;
+ par.cy = -0.20921562151741355;
+ par.imgw = 9.6624448855068765e-08;
+ par.maxit = 20000;
uint8_t *img = new uint8_t[3 * 1920 * 1080];
mandel_render(img, ctx, &par);
mandel_free(ctx);