diff options
author | 2020-11-26 16:10:20 +0100 | |
---|---|---|
committer | 2020-11-26 16:10:20 +0100 | |
commit | 35df13686f426219cd04d58d7c4f43c8258bf9b0 (patch) | |
tree | cd6ba8fef72b8e045530a81b67028d816e9bcd2f /glutin/README.md | |
parent | 50a1f78996bb3c31e37624a59b54387ace2662a1 (diff) | |
parent | 29ad61d377d16c61e68d051277fc73c19f8cae82 (diff) | |
download | iced-35df13686f426219cd04d58d7c4f43c8258bf9b0.tar.gz iced-35df13686f426219cd04d58d7c4f43c8258bf9b0.tar.bz2 iced-35df13686f426219cd04d58d7c4f43c8258bf9b0.zip |
Merge pull request #636 from hecrj/improvement/update-ecosystem-and-roadmap
Update `ECOSYSTEM` and `ROADMAP`
Diffstat (limited to 'glutin/README.md')
-rw-r--r-- | glutin/README.md | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/glutin/README.md b/glutin/README.md index 34dec1b3..addb9228 100644 --- a/glutin/README.md +++ b/glutin/README.md @@ -1,24 +1,26 @@ -# `iced_winit` -[][documentation] -[](https://crates.io/crates/iced_winit) -[](https://github.com/hecrj/iced/blob/master/LICENSE) +# `iced_glutin` +[][documentation] +[](https://crates.io/crates/iced_glutin) +[](https://github.com/hecrj/iced/blob/master/LICENSE) [](https://iced.zulipchat.com) -`iced_winit` offers some convenient abstractions on top of [`iced_native`] to quickstart development when using [`winit`]. +`iced_glutin` offers some convenient abstractions on top of [`iced_native`] to quickstart development when using [`glutin`]. It exposes a renderer-agnostic `Application` trait that can be implemented and then run with a simple call. The use of this trait is optional. A `conversion` module is provided for users that decide to implement a custom event loop. - +<p align="center"> + <img alt="The native target" src="../docs/graphs/native.png" width="80%"> +</p> -[documentation]: https://docs.rs/iced_winit +[documentation]: https://docs.rs/iced_glutin [`iced_native`]: ../native -[`winit`]: https://github.com/rust-windowing/winit +[`glutin`]: https://github.com/rust-windowing/glutin ## Installation -Add `iced_winit` as a dependency in your `Cargo.toml`: +Add `iced_glutin` as a dependency in your `Cargo.toml`: ```toml -iced_winit = "0.1" +iced_glutin = "0.1" ``` __Iced moves fast and the `master` branch can contain breaking changes!__ If |