Merge pull request #30 from inolen/nova_fix

don't call va each frame in GLSL_VertexAttribPointers
This commit is contained in:
Zack Middleton 2014-01-14 13:23:37 -08:00
commit aa92f7e76a
1 changed files with 4 additions and 1 deletions

View File

@ -1647,7 +1647,10 @@ void GLSL_VertexAttribPointers(uint32_t attribBits)
}
// don't just call LogComment, or we will get a call to va() every frame!
if(r_logFile->integer)
{
GLimp_LogComment(va("--- GL_VertexAttribPointers( %s ) ---\n", vbo->name));
}
// position/normal/tangent are always set in case of animation
oldFrame = glState.vertexAttribsOldFrame;