mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-23 15:50:20 +00:00
Expose wrapper backend mode in runtime diagnostics
This commit is contained in:
parent
ea2d452f4b
commit
45c2ed7a64
5 changed files with 39 additions and 1 deletions
|
|
@ -3945,7 +3945,12 @@ bool Renderer::initFSR2Resources() {
|
|||
if (fsr2_.amdFsr3FramegenRuntimeReady) {
|
||||
fsr2_.amdFsr3RuntimeLastError.clear();
|
||||
if (fsr2_.amdFsr3Runtime->loadPathKind() == AmdFsr3Runtime::LoadPathKind::Wrapper) {
|
||||
fsr2_.amdFsr3RuntimePath = "Path B";
|
||||
const std::string& wrapperBackend = fsr2_.amdFsr3Runtime->wrapperBackendName();
|
||||
if (!wrapperBackend.empty()) {
|
||||
fsr2_.amdFsr3RuntimePath = "Path B (" + wrapperBackend + ")";
|
||||
} else {
|
||||
fsr2_.amdFsr3RuntimePath = "Path B";
|
||||
}
|
||||
} else {
|
||||
fsr2_.amdFsr3RuntimePath = "Path A";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue