Rua
Rua
The code here is meant to check whether the formats of the source and destination image in `vkCmdCopyImage` are compatible: https://github.com/KhronosGroup/Vulkan-ValidationLayers/blob/70835ff23b3f513d86fcb918ab8352a8f9ee8c1f/layers/buffer_validation.cpp#L3178-L3184 If neither format is a depth/stencil format, then it...
According to the documentation of the `networking.useNetworkd` option, this feature is still experimental. Judging by the number of breakage bugs still being reported for it on nixpkgs, it's not ready...
Changelog: ```markdown ### Breaking changes Global changes: - All structs containing `ImageSubresourceLayers` and `ImageSubresourceRange` now use `Default::default()` as the default value for that field, instead of an empty value (all...
Since about a week or so, the system tray widgets that I have declared as hidden are no longer being hidden. Instead, they have reverted to the default "shown when...
Currently, the precedence table lists method calls higher than field accesses. Which gives the impression that for example `a.b.c()` is parsed as `a.(b.c())` rather than the correct `(a.b).c()`. I don't...
Does this issue occur when all extensions are disabled?: Yes - VS Code Version: 1.97.2 (not installed via flatpak) - OS Version: Fedora 41 with KDE 6.3 / NixOS 24.11...
- Fixes #1506. - Fixes #1496.
Transpiling the following: ```C #include void foo() { int var = 9001; ({ var = 42; return; }); printf("I should be unreachable!"); } ``` results in ```rust #![allow( dead_code, non_camel_case_types,...