diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-08 02:47:01 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-08 02:47:01 +0100 |
commit | de7d432e18f4363e73b11f23885d7afd002a99f0 (patch) | |
tree | b2321f6c77d19147892541b2de619681372beeb0 /src/ft_draw_textures.c | |
parent | Not great (diff) | |
download | 42-cub3d-de7d432e18f4363e73b11f23885d7afd002a99f0.tar.gz 42-cub3d-de7d432e18f4363e73b11f23885d7afd002a99f0.tar.bz2 42-cub3d-de7d432e18f4363e73b11f23885d7afd002a99f0.tar.xz 42-cub3d-de7d432e18f4363e73b11f23885d7afd002a99f0.tar.zst 42-cub3d-de7d432e18f4363e73b11f23885d7afd002a99f0.zip |
I'm close af
Diffstat (limited to 'src/ft_draw_textures.c')
-rw-r--r-- | src/ft_draw_textures.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ft_draw_textures.c b/src/ft_draw_textures.c index c8eacfc..7893ffe 100644 --- a/src/ft_draw_textures.c +++ b/src/ft_draw_textures.c @@ -33,13 +33,13 @@ void ft_draw_texture(t_cub *cl, int x, int y, int tex_y) calc = (calc >= 255) ? (255) : (calc); calc = (calc < 1) ? (1) : (calc); cl->img.ptr[x * 4 + (cl->img.sizeline * y)] = - (unsigned char)cl->tlist[cl->w_side].ptr[cl->tlist[cl->w_side].tex_x * 4 + 4 * + (uint8_t)cl->tlist[cl->w_side].ptr[cl->tlist[cl->w_side].tex_x * 4 + 4 * cl->tlist[cl->w_side].img_h * tex_y] / calc; cl->img.ptr[x * 4 + (cl->img.sizeline * y) + 1] = - (unsigned char)cl->tlist[cl->w_side].ptr[cl->tlist[cl->w_side].tex_x * 4 + 4 * + (uint8_t)cl->tlist[cl->w_side].ptr[cl->tlist[cl->w_side].tex_x * 4 + 4 * cl->tlist[cl->w_side].img_h * tex_y + 1] / calc; cl->img.ptr[x * 4 + (cl->img.sizeline * y) + 2] = - (unsigned char)cl->tlist[cl->w_side].ptr[cl->tlist[cl->w_side].tex_x * 4 + 4 * + (uint8_t)cl->tlist[cl->w_side].ptr[cl->tlist[cl->w_side].tex_x * 4 + 4 * cl->tlist[cl->w_side].img_h * tex_y + 2] / calc; cl->img.ptr[x * 4 + cl->wlist.x_size * y + 3] = (char)0; |