mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 06:39:46 -06:00
Revert "Merge pull request #3076 from void-ghost/stereo3d_presets"
This reverts commit81414b4fa2
, reversing changes made tob926061f64
. Conflicts: Source/Core/DolphinWX/Frame.cpp Source/Core/VideoCommon/VideoConfig.cpp Source/Core/VideoCommon/VideoConfig.h
This commit is contained in:
@ -17,7 +17,6 @@ class VideoBackend : public VideoBackendHardware
|
||||
|
||||
std::string GetName() const override;
|
||||
std::string GetDisplayName() const override;
|
||||
std::string GetConfigName() const override;
|
||||
|
||||
void Video_Prepare() override;
|
||||
void Video_Cleanup() override;
|
||||
|
@ -103,11 +103,6 @@ std::string VideoBackend::GetDisplayName() const
|
||||
return "OpenGL";
|
||||
}
|
||||
|
||||
std::string VideoBackend::GetConfigName() const
|
||||
{
|
||||
return "gfx_opengl";
|
||||
}
|
||||
|
||||
static std::vector<std::string> GetShaders(const std::string &sub_dir = "")
|
||||
{
|
||||
std::vector<std::string> paths = DoFileSearch({".glsl"}, {
|
||||
@ -148,7 +143,7 @@ void VideoBackend::ShowConfig(void *_hParent)
|
||||
{
|
||||
if (!s_BackendInitialized)
|
||||
InitBackendInfo();
|
||||
Host_ShowVideoConfig(_hParent, GetDisplayName(), GetConfigName());
|
||||
Host_ShowVideoConfig(_hParent, GetDisplayName(), "gfx_opengl");
|
||||
}
|
||||
|
||||
bool VideoBackend::Initialize(void *window_handle)
|
||||
@ -158,7 +153,7 @@ bool VideoBackend::Initialize(void *window_handle)
|
||||
|
||||
frameCount = 0;
|
||||
|
||||
g_Config.Load(File::GetUserPath(D_CONFIG_IDX) + GetConfigName() + ".ini");
|
||||
g_Config.Load(File::GetUserPath(D_CONFIG_IDX) + "gfx_opengl.ini");
|
||||
g_Config.GameIniLoad();
|
||||
g_Config.UpdateProjectionHack();
|
||||
g_Config.VerifyValidity();
|
||||
|
Reference in New Issue
Block a user