summaryrefslogtreecommitdiffstats
path: root/graphics/src
diff options
context:
space:
mode:
authorLibravatar Richard <richardsoncusto@gmail.com>2022-09-21 19:17:25 -0300
committerLibravatar bungoboingo <shankern@protonmail.com>2023-01-09 11:27:04 -0800
commit064407635a0f9d79a067bad62f6f1042acaed18d (patch)
tree7a50ae7c02ca6f60d49bfef2af6ff2f127ac4e13 /graphics/src
parent0ad53a3d5c7b5fb5785a64102ee1ad7df9a5fb2b (diff)
downloadiced-064407635a0f9d79a067bad62f6f1042acaed18d.tar.gz
iced-064407635a0f9d79a067bad62f6f1042acaed18d.tar.bz2
iced-064407635a0f9d79a067bad62f6f1042acaed18d.zip
implement `multi_window` for `iced_glutin`
Diffstat (limited to 'graphics/src')
-rw-r--r--graphics/src/window/gl_compositor.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/src/window/gl_compositor.rs b/graphics/src/window/gl_compositor.rs
index a45a7ca1..e6ae2364 100644
--- a/graphics/src/window/gl_compositor.rs
+++ b/graphics/src/window/gl_compositor.rs
@@ -30,7 +30,7 @@ pub trait GLCompositor: Sized {
/// The settings of the [`GLCompositor`].
///
/// It's up to you to decide the configuration supported by your renderer!
- type Settings: Default;
+ type Settings: Default + Clone;
/// Creates a new [`GLCompositor`] and [`Renderer`] with the given
/// [`Settings`] and an OpenGL address loader function.