Basically what the title says. Black produces white and white produces black. There seems to be no method to invert the colors on the display either. If there was a buffer_mut method I could maybe do this:
self.display.buffer_mut().iter_mut().for_each(|b| *b = !*b)
Basically what the title says. Black produces white and white produces black. There seems to be no method to invert the colors on the display either. If there was a buffer_mut method I could maybe do this:
self.display.buffer_mut().iter_mut().for_each(|b| *b = !*b)