Adam Gausmann
Adam Gausmann
When I get a chance, I will also upload a screen recording to demonstrate what exactly is happening.
No, in fact the MouseWheel events come at the same time that the mouse wheel is rotated, it doesn't matter if the mouse wheel events are directed at another window....
And here's the same test case performed on bare metal: ``` # Directed at Alacritty [2020-07-08 17:41:52.919049447] [INFO] glutin event: DeviceEvent { device_id: DeviceId(X(DeviceId(15))), event: MouseWheel { delta: LineDelta(0.0, 15.0)...
No, I do not receive any `WindowEvent`s while the other window is focused, but the next `WindowEvent` received has the net effect of all previous `DeviceEvent`s, regardless of whether they're...
`usb-device` already does something like this internally to write the number of endpoints in an interface. Because it doesn't know how many endpoints there are when the interface descriptor is...
This is what I imagine it'd look like, for reference: ```rust struct DeferredWrite(usize); trait DescriptorWriter { /* ... */ fn defer_ahead(&self, offset: usize) -> DeferredWrite { DeferredWrite(self.position() + offset) }...
I don't really like how I structured the documentation for this, it's a little all over the place. Feel free to revise/reorganize/rewrite it.
[Example usage](https://github.com/agausmann/usbd-midi/blob/a7263a57a780821b2a5ae04752112a74f76eda3c/src/lib.rs#L53-L72) from my work-in-progress USB-MIDI implementation.
+1 for an option for adding the server as a network participant. In particular, I would like it to populate its own `/etc/hosts` and also be reachable using its own...
As a workaround, I just got a network up and running by containerizing `innernet-server`, and running `innernet` on the host machine. There was one quirk, I had to hand-edit the...