graphics api

uefi
Able 2022-02-14 07:48:41 -06:00
parent 1cdb990794
commit 8c982e373c
Signed by untrusted user: able
GPG Key ID: D164AF5F5700BE51
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
use super::positions::Position2D;
use super::pixel_format::Rgba;
pub type FontSize = u32;
pub fn draw_char(position: Position2D, character: char, size: FontSize, color: Rgba) {}