Faule Socke
Faule Socke
If you point me to some code locations I can figure out stuff for myself and provide a PR. I guess this would be easiest for all of us.
> * Minimal vimrc content (A minimal vimrc is the smallest vimrc that could > reproduce the issue. Refer to an example [here](https://github.com/autozimu/LanguageClient-neovim/blob/next/min-vimrc.vim)): > I guess any minimal vimrc will...
Maybe you clicked on the wrong link? ncm2/ncm2/issues/19 It includes ncm2, ncm2-ultisnips, ultisnips, and LanguageClient-neovim. This should be enough to reproduce my issue with parameter autocompletion.
However, you do not need ncm2 to _reproduce_ the issue, you only need it to _observe_ it. There might be other ways to observe it.
I would suggest making `Transform` depend on `One` and then removing the `one()` method from `Transform`.
Okay, while implementing I noticed this above `from_buffer`: ```rust /// TODO: Support mipmaps ``` I can implement this as well but there are multiple ways on how we can do...
Why would you actually want to wait on the acquisition of a swapchain image and not the presentation? I recommend having a look at the different swapchain presentation modes vulkan...
I would say it's perfectly fine what you want to do but I'm not sure whether it solves your problem. However, I'm not the maintainer, so I guess you have...
Locking is entirely vulkano-specific. From what I have seen I guess the image needs to be unlocked with the desired `final_layout`. Layouts describe the way the GPU stores data for...
Oh. I wasn't aware that the `exclusive` flag is being used for cross-command buffer dependencies. I will think of a different fix.