summaryrefslogtreecommitdiffstats
path: root/winit/src/compositor.rs
blob: f6ce30750e3f2cb220308b5752a10eb7e508e5a7 (plain) (blame)
1
2
3
4
5
6
7
use crate::Size;

pub trait Compositor {
    fn window(&self) -> &winit::window::Window;

    fn resize(&self, new_size: Size<u32>);
}