diff --git a/lib/x11/WindowXlib.cpp b/lib/x11/WindowXlib.cpp index 1ef5731..25bb7c6 100644 --- a/lib/x11/WindowXlib.cpp +++ b/lib/x11/WindowXlib.cpp @@ -55,7 +55,7 @@ static const int ContextAttribs[] = namespace boo { static LogVisor::LogModule Log("boo::WindowXCB"); -IGraphicsCommandQueue* _NewGLES3CommandQueue(IGraphicsContext* parent); +IGraphicsCommandQueue* _NewGLCommandQueue(IGraphicsContext* parent); void _XlibUpdateLastGlxCtx(GLXContext lastGlxCtx); void GLXExtensionCheck(); void GLXWaitForVSync(); @@ -342,7 +342,7 @@ public: IGraphicsCommandQueue* getCommandQueue() { if (!m_commandQueue) - m_commandQueue = _NewGLES3CommandQueue(this); + m_commandQueue = _NewGLCommandQueue(this); return m_commandQueue; }