Log selected FSR3 runtime library and readiness

This commit is contained in:
Kelsi 2026-03-09 02:20:14 -07:00
parent 40289c5f8e
commit a2c6ce8a7b

View file

@ -321,6 +321,8 @@ bool AmdFsr3Runtime::initialize(const AmdFsr3RuntimeInitDesc& desc) {
" caps=0x", static_cast<unsigned int>(wrapperCaps));
}
}
LOG_INFO("FSR3 runtime: loaded wrapper library ", loadedLibraryPath_,
" framegenReady=", frameGenerationReady_ ? "yes" : "no");
return true;
}
@ -438,6 +440,8 @@ bool AmdFsr3Runtime::initialize(const AmdFsr3RuntimeInitDesc& desc) {
ready_ = true;
backend_ = RuntimeBackend::Official;
LOG_INFO("FSR3 runtime: loaded official library ", loadedLibraryPath_,
" framegenReady=", frameGenerationReady_ ? "yes" : "no");
return true;
#endif
}