mitchmindtree
mitchmindtree
Thanks @suhr that did the trick, though I also needed the `libxkbcommon` build input.
Thanks a lot for the valuable insight, I'm glad that I asked! Is it possible for there to be other kinds of `Linear` encodings? E.g. something like `Rgb` rather than...
Thanks, that clears things up for me! I'm happy for this to be closed, but will leave it open in case you'd like the reminder for the addition to the...
Hi folks! Is it possible that rust-gpu may one day support trait objects? I'm currently implementing "ray tracing in one weekend" with `rust-gpu` and there are a couple cases like...
Judging by gfx-rs/wgpu-rs#155 and gfx-rs/wgpu-rs#168 I don't imagine it should affect us a great deal - most of the abstractions in nannou take a `&mut CommandEncoder` and encode the whole...
Was doing a bit more profiling of the compiler today, and simple memory allocations are showing up a lot, particularly during typecheck. It looks like one of the big culprits...
Sorry for the delayed response, yes happy for conrod to be flagged as unmaintained within the advisory-db.
@TheEdward162 ooo that would be a nice option to have. I wonder where within the vulkano API this could be exposed. I wonder - is there any drawback to just...
Just want to add that I'm running into this exact issue - specifically, using an `AutoCommandBufferBuilder` with only the `clear_color_image` command on a swapchain image. I can verify that something...
### Memory barrier image layouts seem OK Memory barriers are inserted via the `add_image_memory_barrier` method. In the simple `clear_color_image` command buffer I describe in my previous comment, `add_image_memory_barrier` gets called...