diff options
author | salaaad2 <arthurdurant263@gmail.com> | 2020-02-18 18:57:45 +0100 |
---|---|---|
committer | salaaad2 <arthurdurant263@gmail.com> | 2020-02-18 18:57:45 +0100 |
commit | cbf73a5e2d4f1fda6e6267854954b78417678540 (patch) | |
tree | 060a265f0388bc7816827493e3d969506c3daf71 /src/ft_draw_textures.c | |
parent | pas loin (diff) | |
download | 42-cub3d-cbf73a5e2d4f1fda6e6267854954b78417678540.tar.gz 42-cub3d-cbf73a5e2d4f1fda6e6267854954b78417678540.tar.bz2 42-cub3d-cbf73a5e2d4f1fda6e6267854954b78417678540.tar.xz 42-cub3d-cbf73a5e2d4f1fda6e6267854954b78417678540.tar.zst 42-cub3d-cbf73a5e2d4f1fda6e6267854954b78417678540.zip |
gang
Diffstat (limited to 'src/ft_draw_textures.c')
-rw-r--r-- | src/ft_draw_textures.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ft_draw_textures.c b/src/ft_draw_textures.c index d412998..ec20f33 100644 --- a/src/ft_draw_textures.c +++ b/src/ft_draw_textures.c @@ -12,6 +12,7 @@ #include <cub3d.h> #include <stdint.h> +#include <stdio.h> /* ** 0 : no @@ -23,6 +24,7 @@ void ft_draw_texture(t_cub *cl, int x, int y, int tex_y) { + /*printf("%c\n", cl->img.ptr[x * 4 + 4 * (cl->img.sizeline * y)] );*/ /**(int*)(cl->img.ptr + (x * 4 + (y * cl->img.sizeline))) = (cl->rlist.side) ? 0x2200ffaa : 0x0000ffaa;*/ cl->img.ptr[x * 4 + (cl->img.sizeline * y)] = (char)cl->tlist[cl->w_side].ptr[cl->tlist[cl->w_side].tex_x * 4 + 4 * @@ -33,7 +35,7 @@ void ft_draw_texture(t_cub *cl, int x, int y, int tex_y) cl->img.ptr[x * 4 + (cl->img.sizeline * y) + 2] = (char)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]; - cl->img.ptr[x * 4 + 4 * cl->wlist->x_size * y + 3] = (char)0; + cl->img.ptr[x * 4 + cl->wlist->x_size * y + 3] = (char)0; } void ft_choose_tex(t_cub *clist) |