summaryrefslogtreecommitdiffstats
path: root/examples/integration_opengl/src/main.rs
diff options
context:
space:
mode:
authorLibravatar Richard <richardsoncusto@gmail.com>2022-10-19 22:56:00 -0300
committerLibravatar bungoboingo <shankern@protonmail.com>2023-01-09 11:27:04 -0800
commit1bc0c480f9747826b244c30e92d8c4a29b576e4a (patch)
treecfe793f0ad7977c334fb729bdb989dc6a88b4496 /examples/integration_opengl/src/main.rs
parenta386788b67bf4e008916e79a8c7dd7289a3ab3cd (diff)
downloadiced-1bc0c480f9747826b244c30e92d8c4a29b576e4a.tar.gz
iced-1bc0c480f9747826b244c30e92d8c4a29b576e4a.tar.bz2
iced-1bc0c480f9747826b244c30e92d8c4a29b576e4a.zip
move window settings to `iced_native`
Diffstat (limited to 'examples/integration_opengl/src/main.rs')
-rw-r--r--examples/integration_opengl/src/main.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/integration_opengl/src/main.rs b/examples/integration_opengl/src/main.rs
index a9e9c732..fdbd7369 100644
--- a/examples/integration_opengl/src/main.rs
+++ b/examples/integration_opengl/src/main.rs
@@ -31,7 +31,8 @@ pub fn main() {
.unwrap();
unsafe {
- let windowed_context = windowed_context.make_current(todo!("derezzedex")).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 _