diff options
author | 2022-09-28 19:10:47 -0300 | |
---|---|---|
committer | 2023-01-09 11:27:04 -0800 | |
commit | a386788b67bf4e008916e79a8c7dd7289a3ab3cd (patch) | |
tree | 3822c5b7044c66dac1f6579c5eafe7443d8e8fbe /examples/integration_opengl/src/main.rs | |
parent | ce43514eaca0e892ad2f646a63fc29af2150d79c (diff) | |
download | iced-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.rs | 4 |
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(); } _ => (), } |