Update rendering settings

This commit is contained in:
Mario Hüttel 2019-10-01 13:19:42 +02:00
parent c8fda11c5c
commit 4ec9195857

View File

@ -345,13 +345,13 @@ int main(int argc, char **argv)
g_signal_connect(window, "delete-event", G_CALLBACK(on_main_window_close), NULL); g_signal_connect(window, "delete-event", G_CALLBACK(on_main_window_close), NULL);
mandelbrot_buff.x_span = 0.075;//2.8; mandelbrot_buff.x_span = 0.05;//2.8;
mandelbrot_buff.y_span = 0.075;//2.25; mandelbrot_buff.y_span = 0.05;//2.25;
mandelbrot_buff.center_x = -0.6; mandelbrot_buff.center_x = -0.6;
mandelbrot_buff.center_y = 0.45; mandelbrot_buff.center_y = 0.44;
mandelbrot_buff.width = 2000; mandelbrot_buff.width = 5000;
mandelbrot_buff.height = 2000; mandelbrot_buff.height = 5000;
mandelbrot_buff.iterations = 400; mandelbrot_buff.iterations = 600;
mandelbrot_buff.mandelbrot_buffer = NULL; mandelbrot_buff.mandelbrot_buffer = NULL;
printf("Compile and run Mandelbrot on OpenCL HW\n"); printf("Compile and run Mandelbrot on OpenCL HW\n");