summaryrefslogtreecommitdiffstats
path: root/examples/integration_opengl/src/main.rs
diff options
context:
space:
mode:
authorLibravatar Richard <richardsoncusto@gmail.com>2022-09-28 19:10:47 -0300
committerLibravatar bungoboingo <shankern@protonmail.com>2023-01-09 11:27:04 -0800
commita386788b67bf4e008916e79a8c7dd7289a3ab3cd (patch)
tree3822c5b7044c66dac1f6579c5eafe7443d8e8fbe /examples/integration_opengl/src/main.rs
parentce43514eaca0e892ad2f646a63fc29af2150d79c (diff)
downloadiced-a386788b67bf4e008916e79a8c7dd7289a3ab3cd.tar.gz
iced-a386788b67bf4e008916e79a8c7dd7289a3ab3cd.tar.bz2
iced-a386788b67bf4e008916e79a8c7dd7289a3ab3cd.zip
use `glutin/multi_window` branch
Diffstat (limited to 'examples/integration_opengl/src/main.rs')
-rw-r--r--examples/integration_opengl/src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/integration_opengl/src/main.rs b/examples/integration_opengl/src/main.rs
index 56470190..a9e9c732 100644
--- a/examples/integration_opengl/src/main.rs
+++ b/examples/integration_opengl/src/main.rs
@@ -31,7 +31,7 @@ pub fn main() {
.unwrap();
unsafe {
- let windowed_context = windowed_context.make_current().unwrap();
+ let windowed_context = windowed_context.make_current(todo!("derezzedex")).unwrap();
let gl = glow::Context::from_loader_function(|s| {
windowed_context.get_proc_address(s) as *const _
@@ -181,7 +181,7 @@ pub fn main() {
),
);
- windowed_context.swap_buffers().unwrap();
+ windowed_context.swap_buffers(todo!("derezzedex")).unwrap();
}
_ => (),
}