diff options
author | salaaad2 <arthurdurant263@gmail.com> | 2020-02-19 16:34:13 +0100 |
---|---|---|
committer | salaaad2 <arthurdurant263@gmail.com> | 2020-02-19 16:34:13 +0100 |
commit | 01ce065c54d205b1d8432eebfa350f57e6f6c3a8 (patch) | |
tree | b2e7cd17c26595d2f2bbd71be3291f455a5cfdcb /src/ft_draw_textures.c | |
parent | okok (diff) | |
download | 42-cub3d-01ce065c54d205b1d8432eebfa350f57e6f6c3a8.tar.gz 42-cub3d-01ce065c54d205b1d8432eebfa350f57e6f6c3a8.tar.bz2 42-cub3d-01ce065c54d205b1d8432eebfa350f57e6f6c3a8.tar.xz 42-cub3d-01ce065c54d205b1d8432eebfa350f57e6f6c3a8.tar.zst 42-cub3d-01ce065c54d205b1d8432eebfa350f57e6f6c3a8.zip |
yes :^) !
Diffstat (limited to '')
-rw-r--r-- | src/ft_draw_textures.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/ft_draw_textures.c b/src/ft_draw_textures.c index 942e386..25a6863 100644 --- a/src/ft_draw_textures.c +++ b/src/ft_draw_textures.c @@ -25,25 +25,6 @@ void ft_draw_texture(t_cub *cl, int x, int y, int tex_y) { - /* t_rgb rgb; */ - /*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;*/ - /* ft_printf("DATA {{{{{%hd}}}}}\nW_SIDE> %d\n\n\n", */ - /* (int16_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] */ - /* , cl->w_side); */ - /* rgb.r = */ - /* (int8_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]; */ - /* rgb.g = */ - /* (int8_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]; */ - /* rgb.b = */ - /* (int8_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]; */ - /* *(int*)(cl->img.ptr + (x * 4 + (y * cl->img.sizeline))) = ft_rgb_to_hex(rgb); */ - - 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 * cl->tlist[cl->w_side].img_h * tex_y]; |