From 29d4722de50ef538929c8a40962b9189bdba3b94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Thu, 9 Apr 2020 13:35:35 +0200 Subject: [PATCH] render: remove unused functions --- render.c | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/render.c b/render.c index f77b7b3d..6ceafb98 100644 --- a/render.c +++ b/render.c @@ -202,16 +202,6 @@ attrs_to_font(const struct terminal *term, const struct attributes *attrs) return term->fonts[idx]; } -static inline struct rgb -color_hex_to_rgb(uint32_t color) -{ - return (struct rgb){ - ((color >> 16) & 0xff) / 255., - ((color >> 8) & 0xff) / 255., - ((color >> 0) & 0xff) / 255., - }; -} - static inline pixman_color_t color_hex_to_pixman_with_alpha(uint32_t color, uint16_t alpha) { @@ -234,14 +224,6 @@ color_hex_to_pixman(uint32_t color) return color_hex_to_pixman_with_alpha(color, 0xffff); } -static inline void -color_dim(struct rgb *rgb) -{ - rgb->r /= 2.; - rgb->g /= 2.; - rgb->b /= 2.; -} - static inline void pixman_color_dim(pixman_color_t *color) {