| 39 | } |
| 40 | |
| 41 | pub struct FramebufferWriter<'a> { |
| 42 | buffer: Volatile<&'a mut [u8]>, |
| 43 | info: FrameBufferInfo, |
| 44 | x_pos: usize, |
| 45 | y_pos: usize, |
| 46 | } |
| 47 | |
| 48 | impl<'a> FramebufferWriter<'a> { |
| 49 | #[inline(always)] |
nothing calls this directly
no outgoing calls
no test coverage detected