Allows logging text to a pixel-based framebuffer.
| 46 | |
| 47 | /// Allows logging text to a pixel-based framebuffer. |
| 48 | pub struct FrameBufferWriter { |
| 49 | framebuffer: &'static mut [u8], |
| 50 | info: FrameBufferInfo, |
| 51 | x_pos: usize, |
| 52 | y_pos: usize, |
| 53 | pub level: usize, |
| 54 | } |
| 55 | |
| 56 | impl FrameBufferWriter { |
| 57 | /// Creates a new logger that uses the given framebuffer. |
nothing calls this directly
no outgoing calls
no test coverage detected