Skip to content
Snippets Groups Projects

vkd3d: Disable push descriptors when that's helpful to stay within 8 descriptor sets.

Merged Giovanni Mascellani requested to merge giomasce/vkd3d:eyjafjallajokull into master
1 unresolved thread

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • Giovanni Mascellani approved this merge request

    approved this merge request

    • 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.

    • Please register or sign in to reply
  • Henri Verbeet approved this merge request

    approved this merge request

  • Henri Verbeet added 15 commits

    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.

    Compare with previous version

Please register or sign in to reply
Loading