-
Notifications
You must be signed in to change notification settings - Fork 0
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
Object management improvements #9
base: master
Are you sure you want to change the base?
Conversation
I'm a bit confused. You say that object manager has been removed but wasnt that the planned way to handle allocating objects? |
The object manager used to handle that. But with the object set upgrade pretty much all of that code was moved into the specific object sets. The only thing left in the manager was the allocator. But realistically there is no reason why the allocator should be separate from the device so i moved it into the DeviceContext struct. Every device now has a publicly accessible allocator. As a result the object manager struct had no purpose anymore. |
The object management upgrade is now basically feature complete.
The major changes are:
There is still a lot of documentation work left and tests are missing for the swapchain object set since we cant expect a surface in a CI run. Not sure how to handle that issue.