ScrapExplorer - bmp_pixel.h
Home / lab / c / bitmap Lines: 1 | Size: 311 bytes [Download] [Show on GitHub] [Search similar files] [Raw] [Raw (proxy)][FILE BEGIN]1/** 2 * BITMAP 3 * © 2025 0x4248 4 */ 5 6#include <stdint.h> 7 8#pragma pack(push, 1) 9 10typedef struct { 11 uint8_t b; 12 uint8_t g; 13 uint8_t r; 14} PIXEL24; 15 16typedef struct { 17 uint8_t b; 18 uint8_t g; 19 uint8_t r; 20 uint8_t a; 21} PIXEL32; 22 23typedef struct { 24 uint16_t value; 25} PIXEL16; 26 27#pragma pack(pop) 28[FILE END](C) 2025 0x4248 (C) 2025 4248 Media and 4248 Systems, All part of 0x4248 See LICENCE files for more information. Not all files are by 0x4248 always check Licencing.