Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Change the default GFX backend from D3D11 to OGL.
  • Loading branch information
delroth committed Jan 14, 2014
1 parent 8b53385 commit a561c43
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Source/Core/DolphinWX/VideoConfigDiag.cpp
Expand Up @@ -67,7 +67,7 @@ void VideoConfigDiag::Event_Close(wxCloseEvent& ev)
}

#if defined(_WIN32)
wxString backend_desc = wxTRANSLATE("Selects what graphics API to use internally.\nThe software renderer is only used for debugging, so you'll want to use either Direct3D or OpenGL. Different games will behave differently on each backend, so for best emulation experience it's recommended to try both and chose the one that fits your requirements best.\nNote that the Direct3D backend is not available on old Windows versions.\n\nIf unsure, use Direct3D.");
wxString backend_desc = wxTRANSLATE("Selects what graphics API to use internally.\nThe software renderer is only used for debugging, so you'll want to use either Direct3D or OpenGL. Different games will behave differently on each backend, so for best emulation experience it's recommended to try both and chose the one that fits your requirements best.\nNote that the Direct3D backend is not available on old Windows versions.\n\nIf unsure, use OpenGL.");
#else
wxString backend_desc = wxTRANSLATE("Selects what graphics API to use internally.\nThe software renderer is only used for debugging, so unless you have a reason to use it you'll want to select OpenGL here.\n\nIf unsure, use OpenGL.");
#endif
Expand Down
10 changes: 5 additions & 5 deletions Source/Core/VideoCommon/VideoBackendBase.cpp
Expand Up @@ -40,13 +40,13 @@ void VideoBackend::PopulateList()
{
VideoBackend* backends[4] = { NULL };

// D3D11 > OGL > SW
// OGL > D3D11 > SW
#if !defined(USE_GLES) || USE_GLES3
g_available_video_backends.push_back(backends[0] = new OGL::VideoBackend);
#endif
#ifdef _WIN32
if (IsGteVista())
g_available_video_backends.push_back(backends[0] = new DX11::VideoBackend);
#endif
#if !defined(USE_GLES) || USE_GLES3
g_available_video_backends.push_back(backends[1] = new OGL::VideoBackend);
g_available_video_backends.push_back(backends[1] = new DX11::VideoBackend);
#endif
g_available_video_backends.push_back(backends[3] = new SW::VideoSoftware);

Expand Down

0 comments on commit a561c43

Please sign in to comment.