summaryrefslogtreecommitdiff
path: root/quantum/color.h
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2023-09-20 16:33:54 +1000
committerGitHub <noreply@github.com>2023-09-20 07:33:54 +0100
commit2aacda32358bfda5fccbfb1e6f4f906c5efa702d (patch)
tree803dca1d52b1140e94c53424616a9289da800f3d /quantum/color.h
parent7bfd775a5c32942f9cdc65a2779920bc784c1549 (diff)
Move `PACKED` define to util.h (#22074)
Diffstat (limited to 'quantum/color.h')
-rw-r--r--quantum/color.h15
1 files changed, 1 insertions, 14 deletions
diff --git a/quantum/color.h b/quantum/color.h
index a0414a291f..00a3bfb3f8 100644
--- a/quantum/color.h
+++ b/quantum/color.h
@@ -18,6 +18,7 @@
#include <stdint.h>
#include <stdbool.h>
+#include "util.h"
// clang-format off
@@ -73,16 +74,6 @@
// clang-format on
-#if defined(__GNUC__)
-# define PACKED __attribute__((__packed__))
-#else
-# define PACKED
-#endif
-
-#if defined(_MSC_VER)
-# pragma pack(push, 1)
-#endif
-
#define WS2812_BYTE_ORDER_RGB 0
#define WS2812_BYTE_ORDER_GRB 1
#define WS2812_BYTE_ORDER_BGR 2
@@ -118,10 +109,6 @@ typedef struct PACKED HSV {
uint8_t v;
} HSV;
-#if defined(_MSC_VER)
-# pragma pack(pop)
-#endif
-
RGB hsv_to_rgb(HSV hsv);
RGB hsv_to_rgb_nocie(HSV hsv);
#ifdef RGBW