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

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