diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-03 16:43:19 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-03 16:44:37 +0100 |
commit | e114123df2a05650f0f7e34044c1e8f829c50a44 (patch) | |
tree | 48c408b469d5fc3f1acdf4468ad6f22da8a65370 /liblss16_optimise.c | |
parent | m (diff) | |
download | liblss16-e114123df2a05650f0f7e34044c1e8f829c50a44.tar.gz liblss16-e114123df2a05650f0f7e34044c1e8f829c50a44.tar.bz2 liblss16-e114123df2a05650f0f7e34044c1e8f829c50a44.tar.xz |
misc
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'liblss16_optimise.c')
-rw-r--r-- | liblss16_optimise.c | 8 |
1 files changed, 8 insertions, 0 deletions
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 <string.h> +#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++) { |