Compare commits

..

No commits in common. "e3e544214ace9eccd0b7e212399ee5ef682557a6" and "c8fda11c5cfc0b15cf3ff6f746f670d638f6bd2b" have entirely different histories.

3 changed files with 6 additions and 11 deletions

4
.gitmodules vendored
View File

@ -1,4 +0,0 @@
[submodule "cglm/cglm"]
path = cglm/cglm
url = https://github.com/recp/cglm
branch = master

@ -1 +0,0 @@
Subproject commit 7cdeada70129c08f40ca89b523e71b4428b55029

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);
mandelbrot_buff.x_span = 0.05;//2.8;
mandelbrot_buff.y_span = 0.05;//2.25;
mandelbrot_buff.x_span = 0.075;//2.8;
mandelbrot_buff.y_span = 0.075;//2.25;
mandelbrot_buff.center_x = -0.6;
mandelbrot_buff.center_y = 0.44;
mandelbrot_buff.width = 5000;
mandelbrot_buff.height = 5000;
mandelbrot_buff.iterations = 600;
mandelbrot_buff.center_y = 0.45;
mandelbrot_buff.width = 2000;
mandelbrot_buff.height = 2000;
mandelbrot_buff.iterations = 400;
mandelbrot_buff.mandelbrot_buffer = NULL;
printf("Compile and run Mandelbrot on OpenCL HW\n");