Lukasz Wiklendt
Lukasz Wiklendt
I think the issue might be due to lack of HDPI support in the default backend. Try using the GLFW backend: ```rust extern crate piston_window; extern crate glfw_window; use glfw_window::GlfwWindow;...
Until it is added to the main crate, you can use `igSetNextWindowSize` from the underlying `imgui_sys` crate (wrapped in an `unsafe` block), in the style of https://github.com/ocornut/imgui/issues/676.
Since Bevy 0.10 egui contexts have moved from resources to components. To filter out a system when egui wants input I created a run condition: ```rust fn egui_wants_input(q: Query) ->...
> At first glance it seems that you could move the `SamplerDescriptor` creation which is currently in `Texture::new` into the `default` impl for `TextureConfig ` and expose it that way....