Rua

Results 242 comments of Rua

`cmd_bind_pipeline` is a Vulkan API call; it is just the Ash binding for the `vkCmdBindPipeline` library function. So if the memory allocation is happening within that function (is it?) then...

While I'm also not experienced with leaks, I ran the following and found no leaks: `valgrind --tool=memcheck --leak-check=yes cargo run --bin interactive_fractal` Vulkano: master OS: Linux Mint 20.2 GPU: AMD...

I asked in a Rust group if anyone else can try it out and see if they can reproduce.

@AustinJ235 since you worked on descriptor sets recently, can you look into this?

Maybe just reallocate another pool with the same counts as the previous one, in this case? The implementation could also "cheat". An empty descriptor set contains no data, which means...

Is this specifically when using `CpuAccessibleBuffer` or also in other cases?

Does `CpuBufferPool` allow the host (CPU) to read back from the buffer? I don't see any capability for that in its API. Under what circumstances are these barriers needed for...

Revisiting this issue, I'm wondering what a practical solution to this would be. When recording a command buffer, the code in `SyncCommandBufferBuilder` doesn't know that the user intends to perform...

This is something I would like to help with, but I don't have drivers that support these extensions, so I can only write code, I can't do any testing. Since...

I'm planning to rework `ComputeEntryPoint` and `GraphicsEntryPoint` in the future, so that they extract their information from the shader. In the meantime though, you can make a `RayTracingEntryPoint`?