-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce
multi_window
to iced_glutin
- Loading branch information
1 parent
4bc6608
commit 3969b8d
Showing
4 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
//! Create interactive, native cross-platform applications. | ||
use crate::{Error, Executor}; | ||
|
||
pub use iced_winit::multi_window::{Application, StyleSheet}; | ||
|
||
use iced_winit::Settings; | ||
|
||
/// Runs an [`Application`] with an executor, compositor, and the provided | ||
/// settings. | ||
pub fn run<A, E, C>( | ||
_settings: Settings<A::Flags>, | ||
_compositor_settings: C::Settings, | ||
) -> Result<(), Error> | ||
where | ||
A: Application + 'static, | ||
E: Executor + 'static, | ||
C: iced_graphics::window::GLCompositor<Renderer = A::Renderer> + 'static, | ||
<A::Renderer as iced_native::Renderer>::Theme: StyleSheet, | ||
{ | ||
unimplemented!("iced_glutin not implemented!") | ||
} |