aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_darken_rgb.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ft_darken_rgb.c')
-rw-r--r--src/ft_darken_rgb.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/ft_darken_rgb.c b/src/ft_darken_rgb.c
new file mode 100644
index 0000000..3e61f49
--- /dev/null
+++ b/src/ft_darken_rgb.c
@@ -0,0 +1,23 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* ft_darken_rgb.c :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/03/05 16:04:28 by rbousset #+# #+# */
+/* Updated: 2020/03/05 16:04:29 by rbousset ### ########lyon.fr */
+/* */
+/* ************************************************************************** */
+
+#include <cub3d.h>
+#include <stdint.h>
+
+uint32_t
+ ft_darken_rgb(t_rgb rgb)
+{
+ t_rgb darker;
+
+ darker = rgb;
+ return (ft_rgb_to_hex(darker));
+}