Dzmitry Malyshau
Dzmitry Malyshau
The numbers are great. Looks like there is just a few things to address, really, comparing to the current GL build. One thing that caught my interest is that the...
@dati91 thanks for looking into that! Aren't the tiled gradients differences expected given the change in dithering behavior? Those last two tests need some more attention. Maybe it's just the...
These appear to be the same issues as in https://github.com/servo/servo/pull/21725 So it's not your fault, something regressed in WR and we are trying to narrow it down now.
I don't understand that part about jni. Please describe in more detail.
Thank you for the info @SergeevPavel ! For memory leaks, we are aware that IOSurface objects get lost somehow on resize, and are [looking](https://github.com/gfx-rs/gfx/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+leak) into it.
The solution appears to be straightforward - https://github.com/gfx-rs/gfx/issues/2720
What I found is, during a session of click-rotate-release, we have: - initial click is not consumed right away, i.e. egui context doesn't recognize that Gizmo consumes the click -...
What is the "egui-gizmo-demo" you are referencing @urholaukkarinen ? I checked the [demo in this repo](https://github.com/urholaukkarinen/egui-gizmo/tree/main/demo) and it's not using `winit`, so it's not applicable as an example.
I did some more experiments, and I think I found the answer. `wants_pointer_input()` only sets to true *after* I draw the Gizmo and it receives an event. Previously, I was...
For the record, I tried resizing an egui panel (which isn't related to Gizmo specifically), and I'm seeing the same issue. Initial click is not considered as consumed, which the...