Add RGB565 and RGB888 color support to Quantum Painter (#19382)
This commit is contained in:
parent
5873fbe569
commit
45851a10f6
21 changed files with 226 additions and 43 deletions
|
@ -44,6 +44,8 @@ typedef enum qp_image_format_t {
|
|||
PALETTE_2BPP = 0x05,
|
||||
PALETTE_4BPP = 0x06,
|
||||
PALETTE_8BPP = 0x07,
|
||||
RGB565_16BPP = 0x08,
|
||||
RGB888_24BPP = 0x09,
|
||||
} qp_image_format_t;
|
||||
|
||||
typedef enum painter_compression_t { IMAGE_UNCOMPRESSED, IMAGE_COMPRESSED_RLE } painter_compression_t;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue