pub const CHAR_RASTER_HEIGHT: RasterHeight = RasterHeight::Size16;
pub const CHAR_RASTER_WIDTH: usize = get_raster_width(FontWeight::Regular, CHAR_RASTER_HEIGHT);
pub const BACKUP_CHAR: char = '�';
pub const FONT_WEIGHT: FontWeight = FontWeight::Regular;
extern "C" {
pub static mut _binary_font_psf_start: u64;
pub static mut _binary_font_psf_end: u64;
}
pub struct ScreenFontHeader {
pub magic: u16,
pub font_mode: u8,
pub size: u8,
}
pub struct ScreenFont {
pub magic: u32,
pub version: u32,
pub header_size: u32,
pub flags: u32,
pub glyph_count: u32,
pub bytes_per_glyph: u32,
pub height: u32,
pub width: u32,
}
use noto_sans_mono_bitmap::{
FontWeight, RasterHeight, RasterizedChar,
get_raster, get_raster_width,
};