-
Notifications
You must be signed in to change notification settings - Fork 933
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
Rework shader resource hazard tracking #4691
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6276ae0
to
7765b32
Compare
0e7c233
to
60c341c
Compare
Avoids having to insert redundant barriers when the app does UAV rendering.
Turns out we've had broken write-after-read checks for a while.
Less nuclear approach that hopefully works just as well in practice.
Not like anybody uses this feature, but we need to both check for hazards and make sure the SO counter actually gets tracked. Use the existing draw buffer mechanism for this.
Avoids keeping draw buffers alive when the app stops using indirect draws. Unlikely to have caused issues in practice, but draw buffers are not part of the API state to begin with.
If the app explicitly enables UAV overlap, don't synchronize back-to-back read-modify-write operations to the same UAV either.
60c341c
to
73fccba
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Needs a lot, and I mean a lot of testing both for perf regressions as well as graphical issues, especially in "modern" D3D11 games.
This does a couple of things all at once:
This should make things suck a bit less out of the box, especially if a game correctly uses UAV overlap anyway on graphics UAVs but does not write them every draw, e.g. God of War. At the same time, tracking only resources that are known to be used as graphics UAV avoids CPU overhead in games that don't need this.
d3d11.ignoreGraphicsBarriers
option got replaced with an option to selectively enable UAV overlap only for graphics.Behaviour isn't too different from before, but write <-> read-only scenarios will now emit a barrier. The new option is also more robust w.r.t. transform feedback.
UAVOverlap
behaviour should more closely match expected behaviour in that we now also allow read-modify-write operations to be unsynchronized.