From c94c3930af8c81568be50bdfaaac321b99e296d7 Mon Sep 17 00:00:00 2001 From: Julian T Date: Mon, 9 Mar 2020 18:34:24 +0100 Subject: Colors are floats now --- pgm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pgm.h') diff --git a/pgm.h b/pgm.h index 3e40034..fbd7f73 100644 --- a/pgm.h +++ b/pgm.h @@ -6,11 +6,11 @@ #include "vector.h" typedef struct { - uint8_t r, g, b; + COORD_T r, g, b; } color_t; color_t *color_set(color_t *c, uint8_t r, uint8_t g, uint8_t b); -color_t *color_scale(color_t *dest, color_t *a, float b); +color_t *color_scale(color_t *dest, color_t *a, COORD_T b); color_t *color_add(color_t *dest, color_t *a, color_t *b); color_t *color_scale_vector(color_t *dest, color_t *a, vector_t *v); -- cgit v1.2.3