From e114123df2a05650f0f7e34044c1e8f829c50a44 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Mon, 3 Mar 2025 16:43:19 +0100 Subject: misc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- liblss16_optimise.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'liblss16_optimise.c') diff --git a/liblss16_optimise.c b/liblss16_optimise.c index 5e69d85..f532a94 100644 --- a/liblss16_optimise.c +++ b/liblss16_optimise.c @@ -2,6 +2,10 @@ #include "liblss16.h" #include +#if defined(__clang__) +# pragma clang diagnostic ignored "-Wunsafe-buffer-usage" +#endif + void liblss16_optimise(struct liblss16_header *header, uint8_t *pixels) @@ -37,6 +41,10 @@ liblss16_optimise(struct liblss16_header *header, uint8_t *pixels) width = (unsigned)header->width; width = width < 17U ? width : 17U; for (y = 0, p = 0; y < (unsigned)header->height; y++) { +#ifdef HARDEN + for (x = 0; x < (unsigned)header->width; x++) + pixels[p + x] &= 15U; +#endif colour = remap[pixels[p]]; count = 1U; for (x = 1U; x < width; x++, p++) { -- cgit v1.2.3-70-g09d2