diff options
author | Rudy Bousset <rbousset@z2r5p6.le-101.fr> | 2020-03-07 20:32:17 +0100 |
---|---|---|
committer | Rudy Bousset <rbousset@z2r5p6.le-101.fr> | 2020-03-07 20:32:17 +0100 |
commit | 9336d5812fc107127215bbfcf1bf86e128c9586c (patch) | |
tree | c77d632f32c6e12d913a7984cdd9d249c5ed50ff /src/ft_draw_verline.c | |
parent | qwe (diff) | |
download | 42-cub3d-9336d5812fc107127215bbfcf1bf86e128c9586c.tar.gz 42-cub3d-9336d5812fc107127215bbfcf1bf86e128c9586c.tar.bz2 42-cub3d-9336d5812fc107127215bbfcf1bf86e128c9586c.tar.xz 42-cub3d-9336d5812fc107127215bbfcf1bf86e128c9586c.tar.zst 42-cub3d-9336d5812fc107127215bbfcf1bf86e128c9586c.zip |
DIVINE INTELLECT
Diffstat (limited to 'src/ft_draw_verline.c')
-rw-r--r-- | src/ft_draw_verline.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/ft_draw_verline.c b/src/ft_draw_verline.c index 8621668..18f7cfe 100644 --- a/src/ft_draw_verline.c +++ b/src/ft_draw_verline.c @@ -18,10 +18,9 @@ static void { while ((uint32_t)y < cl->wlist.y_size) { - cl->y = y; *(int*)(cl->img.ptr + (x * 4 + (y * cl->img.sizeline))) - = ft_darken_floor(cl->f_rgb, cl); + = ft_darken_floor(cl->f_rgb, y, cl); y++; } } @@ -34,10 +33,9 @@ static void i = 0; while (i <= y) { - cl->y = i; *(int*)(cl->img.ptr + (x * 4 + (i * cl->img.sizeline))) - = ft_darken_ceil(cl->c_rgb, cl); + = ft_darken_ceil(cl->c_rgb, i, cl); i++; } } |