diff options
Diffstat (limited to 'native')
-rw-r--r-- | native/src/user_interface.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/native/src/user_interface.rs b/native/src/user_interface.rs index 4bcf1e0c..344ba4d6 100644 --- a/native/src/user_interface.rs +++ b/native/src/user_interface.rs @@ -15,10 +15,11 @@ use crate::{Clipboard, Element, Layout, Point, Rectangle, Shell, Size}; /// charge of using this type in your system in any way you want. /// /// # Example -/// The [`integration` example] uses a [`UserInterface`] to integrate Iced in -/// an existing graphical application. +/// The [`integration_opengl`] & [`integration_wgpu`] examples use a +/// [`UserInterface`] to integrate Iced in an existing graphical application. /// -/// [`integration` example]: https://github.com/iced-rs/iced/tree/0.4/examples/integration +/// [`integration_opengl`]: https://github.com/iced-rs/iced/tree/0.4/examples/integration_opengl +/// [`integration_wgpu`]: https://github.com/iced-rs/iced/tree/0.4/examples/integration_wgpu #[allow(missing_debug_implementations)] pub struct UserInterface<'a, Message, Renderer> { root: Element<'a, Message, Renderer>, |