We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fefaaa commit 5c3639cCopy full SHA for 5c3639c
src/main.rs
@@ -144,6 +144,9 @@ fn main() -> ! {
144
Size::new(range.len() as _, 1),
145
);
146
render_fn(&mut self.1[range.clone()]);
147
+ // NOTE! this is not an efficient way to send pixel to the screen, but it is kept simple on this template.
148
+ // It would be much faster to use the DMA to send pixel in parallel.
149
+ // See the example in https://github.com/slint-ui/slint/blob/master/examples/mcu-board-support/pico_st7789.rs
150
self.0
151
.fill_contiguous(
152
&rect,
0 commit comments