mirror of
https://gitlab.com/qemu-project/openbios.git
synced 2024-02-13 08:34:06 +08:00
Clean up font handling
git-svn-id: svn://coreboot.org/openbios/openbios-devel@342 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
18
include/openbios/fontdata.h
Normal file
18
include/openbios/fontdata.h
Normal file
@@ -0,0 +1,18 @@
|
||||
/* Font definitions */
|
||||
|
||||
#ifndef OPENBIOS_FONTDATA_H
|
||||
#define OPENBIOS_FONTDATA_H
|
||||
|
||||
#define FONTDATAMAX_8X8 2048
|
||||
#define FONT_WIDTH_8X8 8
|
||||
#define FONT_HEIGHT_8X8 8
|
||||
|
||||
extern const unsigned char fontdata_8x8[FONTDATAMAX_8X8];
|
||||
|
||||
#define FONTDATAMAX_8X16 4096
|
||||
#define FONT_WIDTH_8X16 8
|
||||
#define FONT_HEIGHT_8X16 16
|
||||
|
||||
extern const unsigned char fontdata_8x16[FONTDATAMAX_8X16];
|
||||
|
||||
#endif /* OPENBIOS_FONTDATA_H */
|
||||
Reference in New Issue
Block a user