Fixed collaborator's name

This commit is contained in:
Lynix
2012-05-01 17:44:14 +02:00
parent 71b4262c51
commit e8ef4b59da
30 changed files with 21 additions and 4542 deletions

View File

@@ -219,6 +219,17 @@ bool NzRenderer::SetVertexBuffer(const NzVertexBuffer* vertexBuffer)
return true;
}
bool NzRenderer::SetVertexDeclaration(const NzVertexBuffer* vertexBuffer)
{
if (m_vertexBuffer == vertexBuffer)
return true;
m_vertexBuffer = vertexBuffer;
m_vertexBufferUpdated = false;
return true;
}
void NzRenderer::Uninitialize()
{
NzOpenGL::Uninitialize();