mocabe
mocabe
`Dummy`, `ALSA` and `CoreAudio` don't even read it so this shouldn't cause any problem. Only `WASAPI` reads it when opening outstream and set the value as a name of stream....
@wegylexy Yeah, that might be more desirable behaviour for WASAPI, although API is not clear on behaviour iirc. Anyway, this library is pretty much unmaintained, so I will not spend...
Not sure it's related to your problem, but I remember some of official Vulkan backends using `FIFO` presentation mode, which introduces much more input lag compared to `Mailbox` mode. I...
@ocornut As vulkan spec says, `VK_PRESENT_MODE_MAILBOX_KHR` *does* wait vertical sync to present image on screen, but all images to present are internally queued, which means it does not block renderer...
Maybe the simplest solution is just wait small amount of time after sending commands like this (from my own backend implementation): ```cpp auto endTime = std::chrono::high_resolution_clock::now(); auto frameTime = (endTime...