42_cub3d/include/render.h

28 lines
1.2 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* render.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mcolonna <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/31 17:13:20 by mcolonna #+# #+# */
/* Updated: 2024/11/12 12:24:02 by mcolonna ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef RENDER_H
# define RENDER_H
# include "include.h"
# include "utils.h"
# include "const.h"
# include "global.h"
/// @brief Draw the camera image using raycasting.
///
/// @param img_data Data addr of the image to draw on.
/// @return Unused.
int render(u_int32_t *img_data);
#endif