aboutsummaryrefslogtreecommitdiff
path: root/main.c
AgeCommit message (Collapse)Author
2019-09-20Parallel computation, pixel arrayCharles
- All the pixels are stored in an array, put in a surface then a texture so we don't draw each pixel one by one. - The computation of this array is done in parallel (one thread by line) - Use sscanf instead of atoi hack to parse options
2019-09-17OptionsCharles
A Config struct and more getopt options for window size, real/imag range, center position.
2019-08-28Color Palette, need shortcutCharles
Added color palette instead of brighness level to display the set boundaries. Vim-like shortcut to move around.
2019-08-28State stores the window size and the domain where to look the setCharles
2019-08-27SDL boilerplate windowCharles
init, quit and run functions. Error handling.
2019-08-27Initial commitCharles
Compute if a number is in Mandelbrot set. Print it to the terminal.