diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-02-25 18:28:19 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-02-25 18:28:19 +0100 |
| commit | 4912a5a3c001fe69b707fdcb69efc2fb163ce107 (patch) | |
| tree | 75f23cf0ece0ef0ef13d32ba6d47eb9f7f05a926 /include | |
| parent | bf02e60b7b38e257b930a7188e42ade25920f71f (diff) | |
| download | fractol-4912a5a3c001fe69b707fdcb69efc2fb163ce107.tar.gz fractol-4912a5a3c001fe69b707fdcb69efc2fb163ce107.tar.bz2 fractol-4912a5a3c001fe69b707fdcb69efc2fb163ce107.zip | |
Added color palette shifting
Diffstat (limited to 'include')
| -rw-r--r-- | include/fractol.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/fractol.h b/include/fractol.h index 05172b5..e054086 100644 --- a/include/fractol.h +++ b/include/fractol.h @@ -6,7 +6,7 @@ /* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/24 09:28:16 by cacharle #+# #+# */ -/* Updated: 2020/02/25 16:21:56 by cacharle ### ########.fr */ +/* Updated: 2020/02/25 18:07:42 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -53,6 +53,7 @@ # define MLXK_L 37 # define MLXK_D 2 # define MLXK_F 3 +# define MLXK_S 1 # define MLXK_PLUS 24 # define MLXK_MINUS 27 @@ -134,6 +135,7 @@ typedef struct int state_init(t_state *state, char *fractal_name); int state_destroy(t_state *state); void state_update_palette(t_state *state); +void state_shift_palette(t_state *state); /* ** render.c |
