Drop 3D Vision Support

This commit is contained in:
Stenzek
2019-10-02 11:07:17 +10:00
parent e6ae204600
commit ae83d02e54
8 changed files with 8 additions and 117 deletions

View File

@ -496,21 +496,6 @@ void HotkeyScheduler::Run()
Config::SetCurrent(Config::GFX_ENHANCE_POST_SHADER, "");
}
}
if (IsHotkey(HK_TOGGLE_STEREO_3DVISION))
{
if (Config::Get(Config::GFX_STEREO_MODE) != StereoMode::Nvidia3DVision)
{
if (Config::Get(Config::GFX_ENHANCE_POST_SHADER) == DUBOIS_ALGORITHM_SHADER)
Config::SetCurrent(Config::GFX_ENHANCE_POST_SHADER, "");
Config::SetCurrent(Config::GFX_STEREO_MODE, StereoMode::Nvidia3DVision);
}
else
{
Config::SetCurrent(Config::GFX_STEREO_MODE, StereoMode::Off);
}
}
}
const auto stereo_depth = Config::Get(Config::GFX_STEREO_DEPTH);