Rename _NewGLES3CommandQueue

This commit is contained in:
Phillip Stephens 2015-11-05 19:35:17 -08:00
parent 0923254b39
commit f1c95d9e61
2 changed files with 3 additions and 3 deletions

View File

@ -1002,7 +1002,7 @@ IVertexFormat* GLDataFactory::newVertexFormat
return retval;
}
IGraphicsCommandQueue* _NewGLES3CommandQueue(IGraphicsContext* parent)
IGraphicsCommandQueue* _NewGLCommandQueue(IGraphicsContext* parent)
{
return new struct GLCommandQueue(parent);
}

View File

@ -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;
}