X11GLXRenderer: fixed broken build
authorTimo Lotterbach <timo.lotterbach@bmw-carit.de>
Thu, 18 Aug 2011 16:39:26 +0000 (18:39 +0200)
committerTimo Lotterbach <timo.lotterbach@bmw-carit.de>
Thu, 18 Aug 2011 16:39:26 +0000 (18:39 +0200)
LayerManagerPlugins/Renderers/Platform/GLXRenderer/src/X11GLXRenderer.cpp

index 0d3ab0e..7b5ee7f 100644 (file)
@@ -56,9 +56,9 @@ bool X11GLXRenderer::start(int width, int height, const char* displayname)
 #ifdef GLX_GRAPHICSYSTEM_FORCE_COPY
             binder = new X11CopyGLX(x11Display);
 #else
-            if ( graphicSystem->isZeroCopyEnabled() == true ) 
+            if ( m_pGraphicSystem->isZeroCopyEnabled() == true ) 
             {
-                binder = new X11TextureFromPixmap(x11Display,currentConfig*);
+                binder = new X11TextureFromPixmap(x11Display, *currentConfig);
             } else {
                 binder = new X11CopyGLX(x11Display);
             }