1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-13 19:18:56 +00:00

fixup! feat(core): introduce new drawing library

This commit is contained in:
cepetr 2024-05-02 08:39:02 +02:00
parent c2a117424e
commit ad4668933d
2 changed files with 2 additions and 2 deletions

View File

@ -100,6 +100,6 @@ impl<'a> Canvas for Mono8Canvas<'a> {
#[cfg(feature = "ui_blurring")]
fn blur_rect(&mut self, _r: Rect, _radius: usize, _cache: &DrawingCache) {
// Not implemented
unimplemented!();
}
}

View File

@ -7,5 +7,5 @@ pub fn render_on_display<'a, F>(_viewport: Option<Viewport>, _bg_color: Option<C
where
F: FnOnce(&mut DirectRenderer<'_, 'a, Mono8Canvas<'a>>),
{
panic!("Not implemented")
unimplemented!();
}