summaryrefslogtreecommitdiffstats
path: root/wgpu/src/renderer/widget/space.rs
blob: 28e05437b94801ec37183adfb1619b8a38bb330a (plain) (blame)
1
2
3
4
5
6
7
8
use crate::{Primitive, Renderer};
use iced_native::{space, MouseCursor, Rectangle};

impl space::Renderer for Renderer {
    fn draw(&mut self, _bounds: Rectangle) -> Self::Output {
        (Primitive::None, MouseCursor::OutOfBounds)
    }
}