From d689910a69d08d7acfeba8115d154eb59c6427c1 Mon Sep 17 00:00:00 2001 From: Kristof Kosztyo Date: Fri, 23 Sep 2016 10:48:01 +0200 Subject: [PATCH] Build fix for the Glx platform Change-Id: I9f3e0254c289c015f61570f71215900e0ab9bfd9 --- framework/platform/X11/tcuX11GlxPlatform.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/framework/platform/X11/tcuX11GlxPlatform.cpp b/framework/platform/X11/tcuX11GlxPlatform.cpp index 1177a0e..3dc27b3 100644 --- a/framework/platform/X11/tcuX11GlxPlatform.cpp +++ b/framework/platform/X11/tcuX11GlxPlatform.cpp @@ -88,7 +88,7 @@ private: EventState& m_eventState; }; -class GlxDisplay : public x11::Display +class GlxDisplay : public XlibDisplay { public: GlxDisplay (EventState& eventState, @@ -155,8 +155,8 @@ protected: GLXDrawable getGLXDrawable () { return m_GLXDrawable; } private: - x11::Display& m_x11Display; - x11::Window m_x11Window; + XlibDisplay& m_x11Display; + XlibWindow m_x11Window; const GLXDrawable m_GLXDrawable; }; @@ -220,7 +220,7 @@ GlxContextFactory::~GlxContextFactory (void) } GlxDisplay::GlxDisplay (EventState& eventState, const char* name) - : x11::Display (eventState, name) + : XlibDisplay (eventState, name) { const Bool supported = glXQueryExtension(m_display, &m_errorBase, &m_eventBase); if (!supported) -- 2.7.4