parsing/free.c mv to parsing/clean.c and function my_mlx_put_pixel changed to cub3d_put_pixel
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
/* By: aortigos <aortigos@student.42malaga.com +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2025/11/25 19:47:02 by aortigos #+# #+# */
|
||||
/* Updated: 2025/12/11 19:57:55 by aortigos ### ########.fr */
|
||||
/* Updated: 2025/12/11 20:02:51 by aortigos ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
@@ -50,11 +50,11 @@ typedef struct s_tex
|
||||
mlx_texture_t *ea;
|
||||
} t_tex;
|
||||
|
||||
typedef struct s_turelist
|
||||
typedef struct s_texture_list
|
||||
{
|
||||
char *name;
|
||||
char *value;
|
||||
struct s_turelist *next;
|
||||
struct s_texture_list *next;
|
||||
} t_texture_list;
|
||||
|
||||
typedef struct s_player
|
||||
@@ -193,7 +193,7 @@ void render_wall(t_mlx *mlx, int ray);
|
||||
// render2.c
|
||||
int get_rgba(int r, int g, int b, int a);
|
||||
int reverse_bytes(int c);
|
||||
void my_mlx_pixel_put(t_mlx *mlx, int x, int y, int color);
|
||||
void cub3d_put_pixel(t_mlx *mlx, int x, int y, int color);
|
||||
float nor_angle(float angle);
|
||||
int unit_circle(float angle, char c);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user