Skip to content

Commit

Permalink
Fix calling wrong method in TextureWarmUpVertexBufferObject =).
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Gramlich committed May 16, 2012
1 parent 59b7cd7 commit adcc1a0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public void warmup(final GLState pGLState, final ITexture pTexture) {
pGLState.pushModelViewGLMatrix();
{
/* Far far away and really small. */
pGLState.resetModelViewGLMatrixStack();
pGLState.loadModelViewGLMatrixIdentity();
pGLState.translateModelViewGLMatrixf(1000000, 1000000, 0);
pGLState.scaleModelViewGLMatrixf(0.0001f, 0.0001f, 0);

Expand Down

0 comments on commit adcc1a0

Please sign in to comment.