Egui Tiles 图来自官方 github 页https://github.com/rerun-io/egui_tiles egui_tiles是一个为 egui GUI 库实现标签页功能的库。与之功能类似的库还有egui_dock,我此前使用过,感觉不错。为了尝试新的库,还是在这个项目使用了 egui_tiles. 使用下来感觉还是 egui_dock 更好上手一些,提供的功能也更丰富。 在本...
The eww crate is build on top of egui-winit and egui-wgpu and provides a more convenient API, since it handles their interactions. For just using the winit-wgpu combination, eww is recommended. You can find a basic usage example under eww/examples/basic. egui-{winit, wgpu} crates If you...
crates/egui-wgpu/Cargo.toml Outdated Show resolved emilk changed the title Add default feature flag to egui-wgpu, to have the ability to use atomics on wasm with egui and wgpu. Add opt-out fragile-send-sync-non-atomic-wasm feature for wgpu Sep 12, 2024 9SMTM6 and others added 3 com...
It was weird that egui-wpgu was using pollster::block_on internally. Users of egui-wpgu can use pollster themselves, or some other async runtime.
Hi. I'm trying to display soft keyboard in simple app by calling show_soft_input: https://github.com/inferrna/hello_world_android_egui/blob/try_keyboard/src/lib.rs#L357 but nothing happens, even logcat contains no messages related to sof...
crates/egui-wgpu/src/winit.rs let instance = wgpu::Instance::new(configuration.backends); let instance = wgpu::Instance::new(wgpu::InstanceDescriptor { backends: configuration.backends, dx12_shader_compiler: Default::default(), // Collaborator Wumpf Jan 26, 2023 an attempt at commentin...