69 return ((
op & 0b11) << 6) + ((
line & 0b111) << 3) + (
fill & 0b111);
73 return ((
line & 0b111) << 3);
static uint8_t DRAW_make_line(enum Draw_colorcode line)
static void DRAW_set_line_color(uint8_t *color, enum Draw_colorcode code)
static void DRAW_set_fill_color(uint8_t *color, enum Draw_colorcode code)
static uint8_t DRAW_make_color(enum Draw_opacity op, enum Draw_colorcode line, enum Draw_colorcode fill)
@ DRAW_OPACITY_TRANSPARENT
static void DRAW_set_opacity(uint8_t *color, enum Draw_opacity op)
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.