/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* color.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: mcolonna +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/10/01 17:04:56 by mcolonna #+# #+# */ /* Updated: 2024/10/15 16:26:52 by mcolonna ### ########.fr */ /* */ /* ************************************************************************** */ #include "map.h" t_color color_from_rgb(int red, int green, int blue) { return (red << 16 | green << 8 | blue); }