You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Like how CommandBuffers or other ones that have plural names, they generally take a slice rather than a pointer. It's possible to do it this way in Vulkan in C++ as follows
Uh oh!
There was an error while loading. Please reload this page.
Like how CommandBuffers or other ones that have plural names, they generally take a slice rather than a pointer. It's possible to do it this way in Vulkan in C++ as follows
std::vector<VkDescriptorSet> descriptorSets; vkAllocateDescriptorSets(device, &allocInfo, descriptorSets.data());
The text was updated successfully, but these errors were encountered: