Zoxc
Zoxc
This adds `set_link_cursor` to `LinkedAxisGroup` which allow the cursor to show up in linked plots. This only handles the default `PlotItem` case. I think changing `PlotItem::on_hover` to produce a list...
This is based on https://github.com/emilk/egui/pull/2028. This adds new `auto_bounds_x` and `auto_bounds_y` methods which allows auto bounds to be used in combination with `include_x` and `include_y`. The plot code is refactored...
It doesn't serialize the enumerator. ```rust fn serialize_some(self, v: &T) -> Result { v.serialize(self) } ``` It would probably make sense to change this to encode `None` as a 0-sized...
I ran into panics trying to run egui / eframe on Nexus 10. wgpu 0.13.1 is used. The following 2 lines from logcat seems most relevant: ``` E/wgpu_hal::gles::egl(16083): GLES: [API/Error]...
I ran into an issue trying to create EGL context with egui / eframe. wgpu 0.13.1 is used. The following lines from logcat seem most relevant: ``` 08-26 18:12:11.261 21714...
This implements checking that query keys result into unique dep nodes as mentioned in https://github.com/rust-lang/rust/pull/112469. We could do a perf check to see how expensive this is. r? @michaelwoerister
This changes `SerializedDepGraph.index` to be computed on-demand per dep kind. This means we can immediately start using queries without waiting for the entire index to be constructed. Additionally a background...
This encodes dep graph edges directly from the previous graph when promoting nodes from a previous session, avoiding allocations / copies. Based on https://github.com/rust-lang/rust/pull/122064 and https://github.com/rust-lang/rust/pull/116375. BenchmarkBeforeAfterTimeTime%🟣 clap:check:unchanged0.4177s0.4072s💚 -2.52%🟣 hyper:check:unchanged0.1430s0.1420s...
This drop AST on a separate thread and prefetches `hir_crate`. A `spawn` function is added to the `parallel` module which spawn some work on the Rayon thread pool.
This could use a perf run.