mesa: add missing glPush/PopMatrix() calls

This commit is contained in:
Brian 2008-04-04 07:29:28 -06:00
parent f32c512774
commit 1e4cd24e9c
1 changed files with 2 additions and 0 deletions

View File

@ -93,12 +93,14 @@ static void Draw(void)
{
glClear(GL_COLOR_BUFFER_BIT);
glPushMatrix();
glColor3f(0,.9,0);
glCallList(list);
glRotatef(45,0,0,1);
glColor3f(1,0,1);
glCallList(list);
glPopMatrix();
glFlush();