pub struct BootFramebufferInfo {
pub buffer: *mut u8,
pub width: usize,
pub height: usize,
pub stride: usize,
pub bpp: usize,
pub is_bgr: bool,
}Expand description
Framebuffer information extracted from BootInfo.
Fields§
§buffer: *mut u8§width: usize§height: usize§stride: usizeStride in bytes (bytes per scanline)
bpp: usizeBytes per pixel (typically 4 for BGRA)
is_bgr: boolPixel format (BGR or RGB)