From a2c6ce8a7b138a009d5e11b9e93dbdce5b98b5ba Mon Sep 17 00:00:00 2001 From: Kelsi Date: Mon, 9 Mar 2026 02:20:14 -0700 Subject: [PATCH] Log selected FSR3 runtime library and readiness --- src/rendering/amd_fsr3_runtime.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/rendering/amd_fsr3_runtime.cpp b/src/rendering/amd_fsr3_runtime.cpp index f0b14b14..6796b5bb 100644 --- a/src/rendering/amd_fsr3_runtime.cpp +++ b/src/rendering/amd_fsr3_runtime.cpp @@ -321,6 +321,8 @@ bool AmdFsr3Runtime::initialize(const AmdFsr3RuntimeInitDesc& desc) { " caps=0x", static_cast(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 }