aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_hex_to_rgb.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ft_hex_to_rgb.c')
-rw-r--r--src/ft_hex_to_rgb.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/ft_hex_to_rgb.c b/src/ft_hex_to_rgb.c
new file mode 100644
index 0000000..03e9643
--- /dev/null
+++ b/src/ft_hex_to_rgb.c
@@ -0,0 +1,25 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* ft_hex_to_rgb.c :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/02/14 17:28:58 by rbousset #+# #+# */
+/* Updated: 2020/02/14 17:28:58 by rbousset ### ########lyon.fr */
+/* */
+/* ************************************************************************** */
+
+#include <cub3d.h>
+#include <stdint.h>
+
+t_rgb
+ ft_hex_to_rgb(int32_t color)
+{
+ t_rgb rgb;
+
+ rgb.r = ((color >> 16) & 0xff) / 255.0;
+ rgb.g = ((color >> 8) & 0xff) / 255.0;
+ rgb.b = ((color) & 0xff) / 255.0;
+ return (rgb);
+}