quaternic

Results 3 issues of quaternic

The modifier key state changes are only reaching `egui` on the next key event. For example, if you press and hold `Ctrl` and don't press any other key, `egui` will...

The previous test would mistakenly return an error if the extensions contain "EGL_EXT_device_base" but not the two others. As stated by the comment, and in https://registry.khronos.org/EGL/extensions/EXT/EGL_EXT_device_base.txt , it is supposed...

Lint name: [declare_interior_mutable_const](https://rust-lang.github.io/rust-clippy/master/index.html#declare_interior_mutable_const) I tried this code: ```rust let _: [Cell; 7] = [Cell::new(true); 7]; ``` Since the array initialization syntax requires `T: Copy`, rustc errors and suggests this fix...

C-enhancement