aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_rgb_to_hex.c
blob: 525296de76cd8883d075bda76e8736195861a2a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <cub3d.h>

int
	ft_rgb_to_hex(t_rgb rgb)
{
	int res;

	res = 0;
	res += ((rgb.r << 16) + (rgb.g << 8) + rgb.b);
	return (res);
}