Move compositor module access from window to crate
This commit is contained in:
parent
5be1ac18fe
commit
984d1f375e
8 changed files with 27 additions and 22 deletions
|
|
@ -1,3 +1,5 @@
|
|||
//! A compositor is responsible for initializing a renderer and managing window
|
||||
//! surfaces.
|
||||
use crate::{Color, Error, Viewport};
|
||||
|
||||
use raw_window_handle::HasRawWindowHandle;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
use crate::window::Information;
|
||||
//! A compositor is responsible for initializing a renderer and managing window
|
||||
//! surfaces.
|
||||
use crate::compositor::Information;
|
||||
use crate::{Color, Error, Size, Viewport};
|
||||
|
||||
use core::ffi::c_void;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue