Improve readability

This commit is contained in:
Stefan Kerkmann 2020-06-05 20:12:33 +02:00
parent 8c45de7e90
commit ed2b2eeed4

View file

@ -82,12 +82,14 @@ where
} }
fn clear(&mut self, color: Rgb565) -> Result<(), Self::Error> { fn clear(&mut self, color: Rgb565) -> Result<(), Self::Error> {
let color = RawU16::from(color).into_inner();
self.draw_iter( self.draw_iter(
0, 0,
0, 0,
(self.width - 1) as u16, (self.width - 1) as u16,
(self.height - 1) as u16, (self.height - 1) as u16,
iter::repeat(RawU16::from(color).into_inner()).take(self.width * self.height), iter::repeat(color).take(self.width * self.height),
) )
} }
} }