Alix Bott

Results 31 comments of Alix Bott

I can confirm this on my machine, I just encountered this problem : Version of vulkano: 0.13.0 & 0.16.0 OS: Windows 10 x64 GPU: Geforce GT 650M

This is great! Then I think we can merge this after tidying up the code. I'll get back to it soon.

The deeper issue here is that the keyboard handling code uses the KeyboardEvent.which property (which by the way is the obsolete, KeyboardEvent.key is the new name for it). Instead, it...

This would be useful for audio plugins (VSTs), since they can only use the raw window handle given to them by the host.

Makes sense! About the second part, indeed currently I have a buffer that gets filled with 10 seconds of data in advance and which I implemented a MediaSource for. The...

I can confirm the same issue here, happening with a bunch of other floating windows. Most annoyingly, it happens with file dialogs too On version: `0.9.10-33-ge22d0fa`

Ah my bad sorry :facepalm: I will upgrade and report back I don't quite understand how that versioning is derived, I thought it was a commit hash originally but it...

This new behavior synergizes pretty poorly with `.run_if` :confused: Would it be possible to have a method on EventReader to read events' emission timestamp or frame-count? That way we would...

I am able to reproduce this the following way: ```toml [package] name = "bug_palette" version = "0.1.0" edition = "2021" [dependencies] scad = "1.2.2" palette = "0.7.0" ``` ```rust //...