aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_draw_verline.c
diff options
context:
space:
mode:
authorsalaaad2 <arthurdurant263@gmail.com>2020-03-09 15:50:02 +0100
committersalaaad2 <arthurdurant263@gmail.com>2020-03-09 15:50:02 +0100
commitf00d3d412bdbbe45c6a84930e9d392bf915a25b9 (patch)
tree77dd102e7dbd84a16b7d767c3edad64841c6628c /src/ft_draw_verline.c
parentils se cachent (mal) (diff)
download42-cub3d-f00d3d412bdbbe45c6a84930e9d392bf915a25b9.tar.gz
42-cub3d-f00d3d412bdbbe45c6a84930e9d392bf915a25b9.tar.bz2
42-cub3d-f00d3d412bdbbe45c6a84930e9d392bf915a25b9.tar.xz
42-cub3d-f00d3d412bdbbe45c6a84930e9d392bf915a25b9.tar.zst
42-cub3d-f00d3d412bdbbe45c6a84930e9d392bf915a25b9.zip
start over n
Diffstat (limited to '')
-rw-r--r--src/ft_draw_verline.c51
1 files changed, 1 insertions, 50 deletions
diff --git a/src/ft_draw_verline.c b/src/ft_draw_verline.c
index 220badb..99fff3c 100644
--- a/src/ft_draw_verline.c
+++ b/src/ft_draw_verline.c
@@ -12,23 +12,6 @@
#include <stdio.h>
#include <cub3d.h>
-uint32_t
- ft_gradient(t_rgb rgb, int it)
-{
- uint32_t res;
-
- (void)it;
- res = 0;
- while (it < 500)
- {
- rgb.r += 1;
- rgb.g += 1;
- rgb.b += 1;
- it++;
- }
- res += ((rgb.r << 16) + (rgb.g << 8) + rgb.b);
- return (res);
-}
static void
ft_draw_floor(t_cub *cl, int32_t y, int32_t x)
@@ -36,7 +19,7 @@ static void
while ((uint32_t)y < cl->wlist->y_size)
{
*(int*)(cl->img.ptr +
- (x * 4 + (y * cl->img.sizeline))) = ft_gradient(cl->f_rgb, y);
+ (x * 4 + (y * cl->img.sizeline))) = ft_rgb_to_hex(cl->f_rgb);
y++;
}
}
@@ -55,38 +38,6 @@ static void
}
}
-/*
-** #include <libft.h>
-** static void
-** ft_draw_ceil_tex(t_cub *cl, int x, int y)
-** {
-** int16_t i;
-** int32_t d;
-** int32_t tex_y;
-**
-** i = 0;
-** while (i < y)
-** {
-** d = i * 256 - cl->wlist->y_size * 128 + cl->rlist.line_h * 128;
-** d = (d <= 0) ? (-d) : (d);
-** ft_printf("%d\n", d);
-** tex_y = ((d * cl->tlist[1].img_h) / cl->rlist.line_h) / 256;
-** (tex_y <= 0) ? (tex_y = 1) : 0;
-** cl->img.ptr[x * 4 + (cl->img.sizeline * i)] =
-** (int8_t)cl->tlist[1].ptr[cl->tlist[1].tex_x * 4 + 4 *
-** cl->tlist[1].img_h * tex_y];
-** cl->img.ptr[x * 4 + (cl->img.sizeline * i) + 1] =
-** (int8_t)cl->tlist[1].ptr[cl->tlist[1].tex_x * 4 + 4 *
-** cl->tlist[1].img_h * tex_y + 1];
-** cl->img.ptr[x * 4 + (cl->img.sizeline * i) + 2] =
-** (int8_t)cl->tlist[1].ptr[cl->tlist[1].tex_x * 4 + 4 *
-** cl->tlist[1].img_h * tex_y + 2];
-** cl->img.ptr[x * 4 + cl->wlist->x_size * i + 3] = (char)0;
-** i++;
-** }
-** }
-*/
-
int8_t
ft_draw_verline(t_cub *cl, int32_t x, int32_t y, int32_t y2)
{