mirror of https://github.com/AxioDL/boo.git
Rename _NewGLES3CommandQueue
This commit is contained in:
parent
0923254b39
commit
f1c95d9e61
|
@ -1002,7 +1002,7 @@ IVertexFormat* GLDataFactory::newVertexFormat
|
|||
return retval;
|
||||
}
|
||||
|
||||
IGraphicsCommandQueue* _NewGLES3CommandQueue(IGraphicsContext* parent)
|
||||
IGraphicsCommandQueue* _NewGLCommandQueue(IGraphicsContext* parent)
|
||||
{
|
||||
return new struct GLCommandQueue(parent);
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue