Skip to main content

strat9_kernel/hardware/video/
mod.rs

1//! Video drivers and framebuffer abstraction
2//!
3//! Provides:
4//! - Framebuffer abstraction (Limine or VirtIO GPU)
5//! - Basic 2D drawing primitives
6//! - Double buffering support
7
8pub mod framebuffer;
9
10pub use framebuffer::{Framebuffer, FramebufferInfo, FramebufferSource, RgbColor};