19 lines
990 B
C
19 lines
990 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* pixel.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: mcolonna <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/04/02 17:17:44 by mcolonna #+# #+# */
|
|
/* Updated: 2024/04/02 17:18:22 by mcolonna ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef PIXEL_H
|
|
# define PIXEL_H
|
|
|
|
typedef uint32_t t_pixel;
|
|
typedef uint8_t t_component;
|
|
|
|
#endif
|