From f1c95d9e6197d841c7ddd8d9e0c8edb6f3af226f Mon Sep 17 00:00:00 2001 From: Phillip Stephens Date: Thu, 5 Nov 2015 19:35:17 -0800 Subject: [PATCH] Rename _NewGLES3CommandQueue --- lib/graphicsdev/GL.cpp | 2 +- lib/x11/WindowXlib.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/graphicsdev/GL.cpp b/lib/graphicsdev/GL.cpp index 9e6a097..3d30143 100644 --- a/lib/graphicsdev/GL.cpp +++ b/lib/graphicsdev/GL.cpp @@ -1002,7 +1002,7 @@ IVertexFormat* GLDataFactory::newVertexFormat return retval; } -IGraphicsCommandQueue* _NewGLES3CommandQueue(IGraphicsContext* parent) +IGraphicsCommandQueue* _NewGLCommandQueue(IGraphicsContext* parent) { return new struct GLCommandQueue(parent); } 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; }