(&mut self, p: impl FnOnce(&mut [u8]) -> ())
| 32 | self.fb |
| 33 | } |
| 34 | pub fn paint_on_framebuffer(&mut self, p: impl FnOnce(&mut [u8]) -> ()) { |
| 35 | p(self.framebuffer()); |
| 36 | framebuffer_flush(); |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | impl OriginDimensions for Display { |
no test coverage detected