summaryrefslogtreecommitdiffstats
path: root/runtime/src/user_interface.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-05-11 15:50:35 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-05-11 16:05:36 +0200
commit63d3fc6996b848e10e77e6924bfebdf6ba82852e (patch)
treeacb365358235be6ce115b50db9404d890b6e77a6 /runtime/src/user_interface.rs
parentb60194844a0f81a864f00e0637b6a4d131194fc5 (diff)
downloadiced-63d3fc6996b848e10e77e6924bfebdf6ba82852e.tar.gz
iced-63d3fc6996b848e10e77e6924bfebdf6ba82852e.tar.bz2
iced-63d3fc6996b848e10e77e6924bfebdf6ba82852e.zip
Remove OpenGL mentions in `README`s
Diffstat (limited to 'runtime/src/user_interface.rs')
-rw-r--r--runtime/src/user_interface.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/runtime/src/user_interface.rs b/runtime/src/user_interface.rs
index c29de7db..d9206134 100644
--- a/runtime/src/user_interface.rs
+++ b/runtime/src/user_interface.rs
@@ -16,11 +16,10 @@ use crate::core::{Element, Layout, Shell};
/// charge of using this type in your system in any way you want.
///
/// # Example
-/// The [`integration_opengl`] & [`integration_wgpu`] examples use a
-/// [`UserInterface`] to integrate Iced in an existing graphical application.
+/// The [`integration`] example uses a [`UserInterface`] to integrate Iced in an
+/// existing graphical application.
///
-/// [`integration_opengl`]: https://github.com/iced-rs/iced/tree/0.9/examples/integration_opengl
-/// [`integration_wgpu`]: https://github.com/iced-rs/iced/tree/0.9/examples/integration_wgpu
+/// [`integration`]: https://github.com/iced-rs/iced/tree/0.9/examples/integration
#[allow(missing_debug_implementations)]
pub struct UserInterface<'a, Message, Renderer> {
root: Element<'a, Message, Renderer>,