Results 765 comments of daxpedda

Cc @Systemcluster, would appreciate your review here.

For reference, pointer prediction is also a thing: - Web: https://www.w3.org/TR/pointerevents3/#predicted-events - Windows: https://learn.microsoft.com/en-us/windows/windows-app-sdk/api/winrt/microsoft.ui.input.pointerpredictor.getpredictedpoints - MacOS: https://developer.apple.com/documentation/uikit/uievent/1613814-predictedtouchesfortouch

> The only problem I see with trying to add Apple Pencil double tap event support is that the event itself is not associated with any of the touch event...

@zesterer friendly ping.

Unfortunately `pollster` itself still depends on `pollster-macro` v0.1. So `pollster` itself needs an update as well.

Agreed, I think this is a nice solution to the problem!

> If this is happening on a single-threaded WASM context, this shouldn't be happening and it's a bug. If it's happening in web workers, it's expected. No, this happened in...

I can't seem to find the code in `async-channel` or `event-listener` guarding this stuff behind Wasm or atomics, where exactly does this happen? > One option is to switch Web...

@MarijnS95 rebasing on #228 should fix the remaining CI.

Its actually not necessary to compile a `cdylib` to get things running in Wasm, `bin` works just as well and `wasm-bindgen` actually supports finding your `main()` function and executing it...