-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Vulkan: Delete smaller descriptor pools. #127
Conversation
It wasn't actually a bug, it was done intentionally. The code is simpler if we only use one pool, and with pools growing in size 16x, the extra capacity is just 1/16th, it's arguably negligible. |
Hmm got it, would it be better to release the unused pools then? |
that would make sense, yeah! |
Alright, I'll try doing it this evening. |
Done. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
fixed |
This fixes a bug where the smaller descriptor sub pools are left unused.