summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Src/VideoBackendBase.cpp
diff options
context:
space:
mode:
authorTony Wasserka <NeoBrainX@gmail.com>2013-10-06 14:34:43 +0200
committerTony Wasserka <NeoBrainX@gmail.com>2013-10-06 14:35:56 +0200
commita25a0a259039a3aac37e6190db2a92fbd49b8cd2 (patch)
tree96438fb8f09911fb1256d9b392397edd4e455907 /Source/Core/VideoCommon/Src/VideoBackendBase.cpp
parent7dba383c7c2ce2985c13a0d10414cb9947c54aa9 (diff)
parented88cf6cad80c95b163efaabcf3f30a1b181315a (diff)
Merge branch 'd3d9-removal'.
If you're looking for a reason for the removal, issue 6167 lists more than enough of things that are not supported by D3D9.
Diffstat (limited to 'Source/Core/VideoCommon/Src/VideoBackendBase.cpp')
-rw-r--r--Source/Core/VideoCommon/Src/VideoBackendBase.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/Core/VideoCommon/Src/VideoBackendBase.cpp b/Source/Core/VideoCommon/Src/VideoBackendBase.cpp
index 4769ede3a0..13d85c2e37 100644
--- a/Source/Core/VideoCommon/Src/VideoBackendBase.cpp
+++ b/Source/Core/VideoCommon/Src/VideoBackendBase.cpp
@@ -6,7 +6,6 @@
// TODO: ugly
#ifdef _WIN32
-#include "../../../Plugins/Plugin_VideoDX9/Src/VideoBackend.h"
#include "../../../Plugins/Plugin_VideoDX11/Src/VideoBackend.h"
#endif
#if !defined(USE_GLES) || USE_GLES3
@@ -41,9 +40,8 @@ void VideoBackend::PopulateList()
{
VideoBackend* backends[4] = { NULL };
- // D3D11 > OGL > D3D9 > SW
+ // D3D11 > OGL > SW
#ifdef _WIN32
- g_available_video_backends.push_back(backends[2] = new DX9::VideoBackend);
if (IsGteVista())
g_available_video_backends.push_back(backends[0] = new DX11::VideoBackend);
#endif