From 1a17b5de71115376a11826ddca28ea740bd3ad1b Mon Sep 17 00:00:00 2001 From: Tony <1414927+zfbTony@users.noreply.github.com> Date: Thu, 21 Jan 2021 18:46:50 -0500 Subject: [PATCH] version is not provided by current vendor api making it pointless to check. --- Engine/source/gfx/gfxCardProfile.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Engine/source/gfx/gfxCardProfile.cpp b/Engine/source/gfx/gfxCardProfile.cpp index c223aca11..6c6d22f14 100644 --- a/Engine/source/gfx/gfxCardProfile.cpp +++ b/Engine/source/gfx/gfxCardProfile.cpp @@ -68,8 +68,9 @@ void GFXCardProfiler::loadProfileScripts(const String& render, const String& ven script = render + "." + vendor + "." + card + ".cs"; loadProfileScript(script); - script = render + "." + vendor + "." + card + "." + version + ".cs"; - loadProfileScript(script); + // Version is not available on d3d11 - suggestion was: (should likely be replaced with nvapi & amd ags lib) + //script = render + "." + vendor + "." + card + "." + version + ".cs"; + //loadProfileScript(script); } GFXCardProfiler::GFXCardProfiler() : mVideoMemory( 0 )