vkd3d: Disable push descriptors when that's helpful to stay within 8 descriptor sets.
Merge request reports
Activity
Storage buffers for shader native 16-bit support will add yet another set, but we can save another set by using the virtual heap pathway for UAV counters. We scan all shaders used in a pipeline for UAV counter ops, so the number of descriptors needed is limited, and it should be ok to add them onto the end of the root descriptor and static sampler bindings. Even if a new descriptor set is created for each draw/dispatch, VRAM usage for descriptors should never be excessive. For apps which create large descriptor heaps it will save one large set.
I'm working on an implementation, but it's not quite ready for game testing. I expect it would go on top of the changes made here if they go upstream.
All the tests are working but I'm shelving this until later. The current method of iterating over each entire range to finding UAV descriptors would be too slow for very large ranges. For Vulkan heaps we would need an array to track all UAV counter descriptors and keep them sorted by descriptor heap offset. Not a priority at the moment.
added 15 commits
-
50a39a02...ed4d4535 - 13 commits from branch
wine:master
- 3bf114f3 - vkd3d/device: Trace which descriptor heap implementation is being used.
- ae772d40 - vkd3d: Disable push descriptors when that's helpful to stay within 8 descriptor sets.
-
50a39a02...ed4d4535 - 13 commits from branch