aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_draw_textures.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ft_draw_textures.c')
-rw-r--r--src/ft_draw_textures.c4
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)