소스 검색

Merge pull request #455 from zfbx/gfxcardprofileversionfix

version is not provided by current vendor api making it pointless to …
Brian Roberts 4 년 전
부모
커밋
babc0689e7
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 2
      Engine/source/gfx/gfxCardProfile.cpp

+ 3 - 2
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 )