blob: 4a7ad8e0e1806b7f2a218f3f936b2be4feb4e991 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_rgb_to_hex.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2020/02/05 16:07:13 by rbousset #+# ## ## #+# */
/* Updated: 2020/02/05 16:07:14 by rbousset ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include <cub3d.h>
#include <stdint.h>
uint32_t
ft_rgb_to_hex(t_rgb rgb)
{
uint32_t res;
res = 0;
res += ((rgb.r << 16) + (rgb.g << 8) + rgb.b);
return (res);
}
|