1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Graphics manipulation operations.

use axdisplay;

pub use axdisplay::DisplayInfo;

/// Returns the framebuffer information.
pub fn framebuffer_info() -> DisplayInfo {
    axdisplay::framebuffer_info()
}

/// Flushes the framebuffer.
pub fn framebuffer_flush() {
    axdisplay::framebuffer_flush()
}