Jay Oster

Results 366 comments of Jay Oster

@overlookmotel Fixed. Thanks for the heads up.

I have to agree that option 3 is required for async-await. I argue that the coroutine-style async paradigm provided by await has vastly different use cases from promises; The former...

I am thinking this suggestion won't work because the allocator needs to outlive the `SerialPort`. The suggestions in #9 are tangentially related. The borrowing means that these types cannot easily...

There doesn't appear to be enough information for this report to be actionable. A minimal reproduction is the best way for anyone to figure out how to fix it. Since...

I can't see all of the types in that code, but which part is relevant to `egui`? I speculate the locks that this thread holds reference state that the GUI...

Does the segfault go away if you disable vsync? ```rust let options = eframe::NativeOptions { initial_window_size: Some(egui::vec2(320.0, 240.0)), vsync: false, ..Default::default() }; ``` This looks like an issue with either...

This ... appears to be a `winit` bug. Using [`set_cursor_hittest()`](https://github.com/rust-windowing/winit/pull/2232) on Windows sets the `WS_EX_LAYERED` extended window attribute. Which is [documented](https://learn.microsoft.com/en-us/windows/win32/winmsg/window-features#layered-windows) to have the following caveat: > After the CreateWindowEx...

Thanks for fixing the minimal repro! Could you also link back to this issue when you create the upstream one?

It is certainly true that as of today, the "single surface principle" is how egui operates. But I do believe it ought to be capable of creating and rasterizing to...

Yep, this is a bug in the settings window on the demo app. I'm not sure if this is something that can be fixed in the general case. The "least...