arceos_api/imp/
display.rs

1
2
3
4
5
6
7
8
9
10
11
pub use axdisplay::DisplayInfo as AxDisplayInfo;

/// Gets the framebuffer information.
pub fn ax_framebuffer_info() -> AxDisplayInfo {
    axdisplay::framebuffer_info()
}

/// Flushes the framebuffer, i.e. show on the screen.
pub fn ax_framebuffer_flush() {
    axdisplay::framebuffer_flush()
}