Rua

Results 107 issues of Rua

When using `ChannelVolume` with `u16` samples, the output is overloaded and clipped. If I print the output samples next to the input ones, it appears that `0x8000` is consistently added...

I tried out the spatial example and noticed that, as the volume decreases, the sound pans back to the center again and becomes mono. This doesn't seem correct, I imagine...

In my code, I set the non-pointer members of Vulkan structs using the struct notation directly, before setting the pointers at the end. Because of the safety advantages, I would...

Ash currently represents Vulkan API versions as `u32`, and has a bunch of bare functions and constants to deal with them. I think it would be more idiomatic if these...

I noticed that Ash generates quite a few structs for extensions without any functions, for example [`KhrSurfaceProtectedCapabilitiesFn`](https://docs.rs/ash/0.32.1/ash/vk/struct.KhrSurfaceProtectedCapabilitiesFn.html). These structs end up empty and are rather useless. Would it be better...

Currently, Ash has separate structures for each extension, which means each one has to be loaded and kept around by the user. This is a bit awkward if there's many...

I'm assuming that this is a mishap with some kind of auto-generating script, and that it should really be `max_image_dimension_1d` or `max_image_dimension_1D`. The same happens with `2_d` and `3_d`, and...

bug

My laptop has a 1336x768 resolution, and it seems that the GUI is not resizing right at that resolution. The buttons at the bottom of the main window don't appear,...

I'm running Linux Mint 21 (Ubuntu 22.04 based). When adding the PPA according to the instructions, I get a warning that apt-key is deprecated: > $ sudo add-apt-repository ppa:pipewire-debian/pipewire-upstream [...]...

Changelog: ```markdown ### Breaking changes Changes to (physical) device: - `Properties` is renamed to `DeviceProperties`. - `Features` is renamed to `DeviceFeatures`. ```` I noticed several people getting confused about what...