Rua

Results 107 issues of Rua

At the moment, when you use `AutoCommandBufferBuilder`, it performs both validation of the command and automatic insertion of pipeline barriers. But it's quite possible that a user might want to...

This problem has been bothering me for a while, but so far I haven't come up with a solution that has a good (IMO) balance between explicitness and usability. The...

status: wontfix / old sync

`ImmutableImage` is immutable in the sense that the user can't submit commands that modify the image contents. But there is one other kind of operation that is not considered in...

Vulkano currently has `StdDescriptorPool`, which despite its name is not actually a `DescriptorPool` in the Vulkan sense, but an allocator for descriptor sets. Vulkano has elevated this particular type to...

The Vulkan spec says: > `VK_DESCRIPTOR_BINDING_PARTIALLY_BOUND_BIT` indicates that descriptors in this binding that are not *dynamically used* need not contain valid descriptors at the time the descriptors are consumed. A...

Vulkano currently checks whether the interfaces of two shaders match, by checking that the values written to each interface location are the same. But the Vulkan spec has a stronger...

Running the triangle example through `vkconfig`'s API dump, I noticed something odd: ``` vkAcquireNextImageKHR(device, swapchain, timeout, semaphore, fence, pImageIndex) returns VkResult VK_SUCCESS (0): device: VkDevice = 0x55b0650f9290 swapchain: VkSwapchainKHR =...

type: safety
status: wontfix / old sync

I noticed that the dynamic-buffers example is giving validation errors: > pDynamicOffsets[0] is 0x4 which when added to the buffer descriptor's range (0xc) is greater then the size of the...

type: bug

@treeki asked me for some troubleshooting with Vulkano, because their image was being garbled after uploading it. We tracked down the API calls with RenderDoc, and found that whenever an...

The `VertexMember` trait is used for the `impl_vertex` macro, and is currently implemented by Vulkano for a bunch of array and tuple types. But there are several libraries out there...