polished_graphics 0.1.1

A graphics library for the Polished OS project.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # Graphics Library
//!
//! This module provides basic framebuffer management and drawing routines for low-level graphics output, such as in an OS kernel or bootloader. It is designed to be used in environments without a standard library (`no_std`).
//!
//! ## Modules
//! - `framebuffer`: Framebuffer initialization and information structures.
//! - `drawing`: Basic drawing routines (e.g., lines) using the framebuffer.

#![no_std]

/// Drawing routines for the framebuffer, such as lines and demo patterns.
pub mod drawing;
/// Framebuffer initialization and information structures.
pub mod framebuffer;