As mentioned in #23, we basically implement ReadBuffer for all &mut [C;N] in
|
unsafe impl<'a, C: PixelColor, const N: usize> DMACapableFrameBufferBackend for &'a mut [C; N] { |
This might be problematic because the slice could not be suitable for DMA access. Maybe it is already fine as is, but as I haven't fully thought this through, I'll leave this as an issue for now.
As mentioned in #23, we basically implement
ReadBufferfor all&mut [C;N]inembedded-graphics-framebuf/src/backends.rs
Line 92 in 4205fb2
This might be problematic because the slice could not be suitable for DMA access. Maybe it is already fine as is, but as I haven't fully thought this through, I'll leave this as an issue for now.