summaryrefslogtreecommitdiffstats
path: root/wgpu/src/renderer/widget/space.rs
blob: 9ec0ed6dbf9b9a8a66d191e0a0edbb535bef33ac (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::default())
    }
}