Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #737 from neobrain/master
Restore Wayland compatibility.
  • Loading branch information
neobrain committed Aug 6, 2014
2 parents 62cc22a + fa5588e commit cb17867
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
Expand Up @@ -5,6 +5,10 @@
#include "Common/Thread.h"
#include "InputCommon/ControllerInterface/ControllerInterface.h"

#if USE_EGL
#include "DolphinWX/GLInterface/GLInterface.h"
#endif

#ifdef CIFACE_USE_XINPUT
#include "InputCommon/ControllerInterface/XInput/XInput.h"
#endif
Expand Down Expand Up @@ -53,10 +57,15 @@ void ControllerInterface::Initialize()
ciface::XInput::Init(m_devices);
#endif
#ifdef CIFACE_USE_XLIB
ciface::Xlib::Init(m_devices, m_hwnd);
#if USE_EGL
if (GLWin.platform == EGL_PLATFORM_X11)
#endif
{
ciface::Xlib::Init(m_devices, m_hwnd);
#ifdef CIFACE_USE_X11_XINPUT2
ciface::XInput2::Init(m_devices, m_hwnd);
#endif
}
#endif
#ifdef CIFACE_USE_OSX
ciface::OSX::Init(m_devices, m_hwnd);
Expand Down
5 changes: 4 additions & 1 deletion Source/UnitTests/VideoCommon/CMakeLists.txt
@@ -1 +1,4 @@
add_dolphin_test(VertexLoaderTest VertexLoaderTest.cpp)
# This test currently doesn't link correctly when EGL is enabled due to issues with the GLInterface design
if(NOT USE_EGL)
add_dolphin_test(VertexLoaderTest VertexLoaderTest.cpp)
endif()

0 comments on commit cb17867

Please sign in to comment.