Rename integration examples

This commit is contained in:
Héctor Ramón Jiménez 2021-08-13 20:01:28 +07:00
parent a646b11109
commit 77a0b68aa1
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
13 changed files with 9 additions and 7 deletions

View file

@ -70,7 +70,8 @@ members = [
"examples/events", "examples/events",
"examples/game_of_life", "examples/game_of_life",
"examples/geometry", "examples/geometry",
"examples/integration", "examples/integration_wgpu",
"examples/integration_opengl",
"examples/pane_grid", "examples/pane_grid",
"examples/pick_list", "examples/pick_list",
"examples/pokedex", "examples/pokedex",
@ -86,7 +87,6 @@ members = [
"examples/tooltip", "examples/tooltip",
"examples/url_handler", "examples/url_handler",
"examples/menu", "examples/menu",
"examples/integration_gl",
] ]
[dependencies] [dependencies]

View file

@ -1,5 +1,5 @@
[package] [package]
name = "integration_gl" name = "integration_opengl"
version = "0.1.0" version = "0.1.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2018" edition = "2018"

View file

@ -1,4 +1,4 @@
## Integration ## OpenGL integration
A demonstration of how to integrate Iced in an existing graphical OpenGL application. A demonstration of how to integrate Iced in an existing graphical OpenGL application.

View file

@ -1,5 +1,5 @@
[package] [package]
name = "integration" name = "integration_wgpu"
version = "0.1.0" version = "0.1.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2018" edition = "2018"

View file

@ -1,6 +1,7 @@
## Integration ## `wgpu` integration
A demonstration of how to integrate Iced in an existing graphical application. A demonstration of how to integrate Iced in an existing graphical application
that leverages [`wgpu`].
The __[`main`]__ file contains all the code of the example. The __[`main`]__ file contains all the code of the example.
@ -16,3 +17,4 @@ cargo run --package integration
``` ```
[`main`]: src/main.rs [`main`]: src/main.rs
[`wgpu`]: https://github.com/gfx-rs/wgpu