🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Dealing with Vulkan DescriptorSet limitation to 4096?

Started by
10 comments, last by DexterZ101 2 years, 2 months ago


YAY! found a solution!

There's an Instancing, and Dynamic Uniform works like a charm but you have to create a massive buffer, but it's just a waste of memory if number objects is not fixed and updating the data back and forth to buffer slows down the performance.

Push Constant !

Using Push constant - single Pipeline, single DescriptorSet, single Uniform buffer and no need to create buffer to constant data just pass the world matrix of each object and that's it!

Many thanks!
Dex!




This topic is closed to new replies.

Advertisement