diff options
author | 2021-11-04 19:26:49 -0300 | |
---|---|---|
committer | 2022-01-19 17:40:17 -0300 | |
commit | 381052c50e8c3458a681ec4f2df6c74a40baf5d2 (patch) | |
tree | d669c6c02c7f3b4d9f1675648e075851e2f39b57 /glutin | |
parent | 3c5ab3011772bf7dbdceafd00c0059dfac5aa40f (diff) | |
download | iced-381052c50e8c3458a681ec4f2df6c74a40baf5d2.tar.gz iced-381052c50e8c3458a681ec4f2df6c74a40baf5d2.tar.bz2 iced-381052c50e8c3458a681ec4f2df6c74a40baf5d2.zip |
Split `quad::Pipeline` into `core` and `compatibility`
Diffstat (limited to 'glutin')
-rw-r--r-- | glutin/src/application.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/glutin/src/application.rs b/glutin/src/application.rs index 437c17ee..88e67220 100644 --- a/glutin/src/application.rs +++ b/glutin/src/application.rs @@ -63,6 +63,7 @@ where let context = ContextBuilder::new() .with_vsync(true) + // .with_gl(glutin::GlRequest::Specific(glutin::Api::OpenGlEs, (2, 0))) .with_multisampling(C::sample_count(&compositor_settings) as u16) .build_windowed(builder, &event_loop) .map_err(|error| { |