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