Build fix for the Glx platform
authorKristof Kosztyo <kkosztyo.u-szeged@samsung.com>
Fri, 23 Sep 2016 08:48:01 +0000 (10:48 +0200)
committerPyry Haulos <phaulos@google.com>
Fri, 23 Sep 2016 19:16:18 +0000 (15:16 -0400)
Change-Id: I9f3e0254c289c015f61570f71215900e0ab9bfd9

framework/platform/X11/tcuX11GlxPlatform.cpp

index 1177a0e..3dc27b3 100644 (file)
@@ -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)