M7350/bootable/bootloader/lk/include/lib/font.h
2024-09-09 08:52:07 +00:00

13 lines
200 B
C

#ifndef __LIB_FONT_H
#define __LIB_FONT_H
#include <lib/gfx.h>
#define FONT_X 6
#define FONT_Y 12
void font_draw_char(gfx_surface *surface, unsigned char c, int x, int y, uint32_t color);
#endif