mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 12:14:45 +00:00
Merge pull request #455 from zfbx/gfxcardprofileversionfix
version is not provided by current vendor api making it pointless to …
This commit is contained in:
commit
babc0689e7
|
|
@ -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 )
|
||||
|
|
|
|||
Loading…
Reference in a new issue