This commit is contained in:
Jack Andersen 2015-11-06 15:43:46 -10:00
commit c3d423e5a4
1 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ static const int ContextAttribs[] =
namespace boo namespace boo
{ {
static LogVisor::LogModule Log("boo::WindowXCB"); static LogVisor::LogModule Log("boo::WindowXCB");
IGraphicsCommandQueue* _NewGLES3CommandQueue(IGraphicsContext* parent); IGraphicsCommandQueue* _NewGLCommandQueue(IGraphicsContext* parent);
void _XlibUpdateLastGlxCtx(GLXContext lastGlxCtx); void _XlibUpdateLastGlxCtx(GLXContext lastGlxCtx);
void GLXExtensionCheck(); void GLXExtensionCheck();
void GLXWaitForVSync(); void GLXWaitForVSync();
@ -342,7 +342,7 @@ public:
IGraphicsCommandQueue* getCommandQueue() IGraphicsCommandQueue* getCommandQueue()
{ {
if (!m_commandQueue) if (!m_commandQueue)
m_commandQueue = _NewGLES3CommandQueue(this); m_commandQueue = _NewGLCommandQueue(this);
return m_commandQueue; return m_commandQueue;
} }