/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_init_winlx.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rbousset +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/14 17:28:54 by rbousset #+# #+# */ /* Updated: 2020/02/14 17:28:54 by rbousset ### ########lyon.fr */ /* */ /* ************************************************************************** */ #include #include #include #include int ft_init_winlx(t_cub *clist) { ft_memdel((void*)&clist->wlist.wlx); if (!(clist->wlist.wlx = mlx_init())) return (-1); return (0); } int ft_init_winptr(t_cub *clist) { ft_memdel((void*)&clist->wlist.winptr); if (!(clist->wlist.winptr = mlx_new_window(clist->wlist.wlx, clist->wlist.x_size, clist->wlist.y_size, "Cub3D"))) return (-1); clist->wlist.inited = 1; mlx_mouse_hide(clist->wlist.wlx, clist->wlist.winptr); return (0); }