aboutsummaryrefslogtreecommitdiff
path: root/capture.c
blob: e1b14b8c6fe5e6f8d7a4099f11cf9c0f906321da (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
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   capture.c                                          :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: cacharle <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/01/11 13:15:11 by cacharle          #+#    #+#             */
/*   Updated: 2020/01/11 13:32:54 by cacharle         ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#include "cub3d.h"

int		capture(t_state *state)
{
	render_update_window(state);
	write_bmp(&state->window);
	return (0);
}

void	write_bmp(t_image *image)
{

}