Go to the documentation of this file.
24 #define QOI_OP_INDEX 0x00
25 #define QOI_OP_DIFF 0x40
26 #define QOI_OP_LUMA 0x80
27 #define QOI_OP_RUN 0xc0
28 #define QOI_OP_RGB 0xfe
29 #define QOI_OP_RGBA 0xff
31 #define QOI_MASK_2 0xc0
33 #define QOI_COLOR_HASH(px) (px[0]*3 + px[1]*5 + px[2]*7 + px[3]*11)