Skip to content

Commit

Permalink
Set default max_iterations back to 64
Browse files Browse the repository at this point in the history
  • Loading branch information
teunvw14 committed Jan 25, 2021
1 parent 6ac9005 commit a339610
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GenericMandelBrotViewer/src/kernel.cu
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ int resolution_x = 1024;
int resolution_y = 1024;
double draw_radius = 2.5;
double escape_radius_squared = 4; // escape_radius = 2^7 = 256
int max_iterations = 64000;
int max_iterations = 64;

bool incremental_iteration = false;
int iterations_per_frame; // value set in main()
Expand Down

0 comments on commit a339610

Please sign in to comment.