#![no_std]
#[macro_use]
extern crate log;
#[doc(no_inline)]
pub use driver_display::DisplayInfo;
use axdriver::{prelude::*, AxDeviceContainer};
use axsync::Mutex;
use lazy_init::LazyInit;
static MAIN_DISPLAY: LazyInit<Mutex<AxDisplayDevice>> = LazyInit::new();
pub fn init_display(mut display_devs: AxDeviceContainer<AxDisplayDevice>) {
info!("Initialize graphics subsystem...");
let dev = display_devs.take_one().expect("No graphics device found!");
info!(" use graphics device 0: {:?}", dev.device_name());
MAIN_DISPLAY.init_by(Mutex::new(dev));
}
pub fn framebuffer_info() -> DisplayInfo {
MAIN_DISPLAY.lock().info()
}
pub fn framebuffer_flush() {
MAIN_DISPLAY.lock().flush().unwrap();
}