aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_init_winlx.c
blob: 40c57df294d37519783a16e865235a99d12df994 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   ft_init_winlx.c                                    :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: rbousset <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/02/14 17:28:54 by rbousset          #+#    #+#             */
/*   Updated: 2020/02/14 17:28:54 by rbousset         ###   ########lyon.fr   */
/*                                                                            */
/* ************************************************************************** */

#include <libft.h>
#include <mlx.h>
#include <cub3d.h>
#include <stdlib.h>

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;
	return (0);
}