aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_init_winlx.c
blob: 931e19b4b9725960e314f763bb5f2e2d8b751024 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <libft.h>
#include <mlx.h>
#include <cub3d.h>
#include <stdlib.h>

int
ft_init_winlx(t_cub *clist)
{
	ft_memdel(clist->wlist->wlx);
	if (!(clist->wlist->wlx = mlx_init()))
		return (-1);
	ft_memdel(clist->wlist->winptr);
	if (!(clist->wlist->winptr = malloc(clist->wlist->x_size
										* clist->wlist->y_size)))
		return (-1);
	if (!(clist->wlist->winptr = mlx_new_window(clist->wlist->wlx,
				clist->wlist->x_size, clist->wlist->y_size, "Cub3D")))
		return (-1);
	ft_printf("Created window of size %dx%d\n",
			  clist->wlist->x_size, clist->wlist->y_size);
	return (0);
}