diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-04 23:55:12 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-04 23:55:12 +0100 |
commit | 998d2df1356f83049c30f71bd5dc4c0597fd4824 (patch) | |
tree | 660eef6063088eea2b844984c49c5aa1b2b6e2f2 /src/ft_init_bmp.c | |
parent | Clean (diff) | |
download | 42-cub3d-998d2df1356f83049c30f71bd5dc4c0597fd4824.tar.gz 42-cub3d-998d2df1356f83049c30f71bd5dc4c0597fd4824.tar.bz2 42-cub3d-998d2df1356f83049c30f71bd5dc4c0597fd4824.tar.xz 42-cub3d-998d2df1356f83049c30f71bd5dc4c0597fd4824.tar.zst 42-cub3d-998d2df1356f83049c30f71bd5dc4c0597fd4824.zip |
Nice bmp
Diffstat (limited to '')
-rw-r--r-- | src/ft_init_bmp.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/ft_init_bmp.c b/src/ft_init_bmp.c index 8e94eba..18c6002 100644 --- a/src/ft_init_bmp.c +++ b/src/ft_init_bmp.c @@ -14,20 +14,6 @@ #include <cub3d.h> #include <stdint.h> -t_bmp_colors - ft_init_bmp_colors(void) -{ - t_bmp_colors bmp_colors; - - bmp_colors.red_mask = 0x00ff0000; - bmp_colors.green_mask = 0x0000ff00; - bmp_colors.blue_mask = 0x000000ff; - bmp_colors.alpha_mask = 0xff000000; - bmp_colors.color_space_type = 0x73524742; - ft_bzero(bmp_colors.unused, 16); - return (bmp_colors); -} - t_bmp_info ft_init_bmp_info(void) { |