arceos_api/imp/display.rs
1pub use axdisplay::DisplayInfo as AxDisplayInfo;
2
3/// Gets the framebuffer information.
4pub fn ax_framebuffer_info() -> AxDisplayInfo {
5 axdisplay::framebuffer_info()
6}
7
8/// Flushes the framebuffer, i.e. show on the screen.
9pub fn ax_framebuffer_flush() {
10 axdisplay::framebuffer_flush()
11}