ax-api 0.5.2

Public APIs and types for ArceOS modules
1
2
3
4
5
6
7
8
9
10
11
pub use ax_display::DisplayInfo as AxDisplayInfo;

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

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