summaryrefslogtreecommitdiffstats
path: root/native/src/renderer/null.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2023-03-09 19:05:38 +0100
committerLibravatar GitHub <noreply@github.com>2023-03-09 19:05:38 +0100
commitcaf2836b1b15bff6e8a2ea72441d67f297eb8707 (patch)
tree0ffa0d1d604780999892b88de85ee93e3ed7d539 /native/src/renderer/null.rs
parent11b2c3bbe31a43e73a61b9bd9f022233f302ae27 (diff)
parent424ac8177309440bbd8efe0dd9f7622cb10807ce (diff)
downloadiced-caf2836b1b15bff6e8a2ea72441d67f297eb8707.tar.gz
iced-caf2836b1b15bff6e8a2ea72441d67f297eb8707.tar.bz2
iced-caf2836b1b15bff6e8a2ea72441d67f297eb8707.zip
Merge pull request #1748 from iced-rs/feature/software-renderer
Software renderer, runtime renderer fallback, and core consolidation
Diffstat (limited to 'native/src/renderer/null.rs')
-rw-r--r--native/src/renderer/null.rs82
1 files changed, 0 insertions, 82 deletions
diff --git a/native/src/renderer/null.rs b/native/src/renderer/null.rs
deleted file mode 100644
index 150ee786..00000000
--- a/native/src/renderer/null.rs
+++ /dev/null
@@ -1,82 +0,0 @@
-use crate::renderer::{self, Renderer};
-use crate::text::{self, Text};
-use crate::{Background, Font, Point, Rectangle, Size, Theme, Vector};
-
-use std::borrow::Cow;
-
-/// A renderer that does nothing.
-///
-/// It can be useful if you are writing tests!
-#[derive(Debug, Clone, Copy, Default)]
-pub struct Null;
-
-impl Null {
- /// Creates a new [`Null`] renderer.
- pub fn new() -> Null {
- Null
- }
-}
-
-impl Renderer for Null {
- type Theme = Theme;
-
- fn with_layer(&mut self, _bounds: Rectangle, _f: impl FnOnce(&mut Self)) {}
-
- fn with_translation(
- &mut self,
- _translation: Vector,
- _f: impl FnOnce(&mut Self),
- ) {
- }
-
- fn clear(&mut self) {}
-
- fn fill_quad(
- &mut self,
- _quad: renderer::Quad,
- _background: impl Into<Background>,
- ) {
- }
-}
-
-impl text::Renderer for Null {
- type Font = Font;
-
- const ICON_FONT: Font = Font::SansSerif;
- const CHECKMARK_ICON: char = '0';
- const ARROW_DOWN_ICON: char = '0';
-
- fn default_font(&self) -> Self::Font {
- Font::SansSerif
- }
-
- fn default_size(&self) -> f32 {
- 16.0
- }
-
- fn load_font(&mut self, _font: Cow<'static, [u8]>) {}
-
- fn measure(
- &self,
- _content: &str,
- _size: f32,
- _font: Font,
- _bounds: Size,
- ) -> (f32, f32) {
- (0.0, 20.0)
- }
-
- fn hit_test(
- &self,
- _contents: &str,
- _size: f32,
- _font: Self::Font,
- _bounds: Size,
- _point: Point,
- _nearest_only: bool,
- ) -> Option<text::Hit> {
- None
- }
-
- fn fill_text(&mut self, _text: Text<'_, Self::Font>) {}
-}