diff options
author | Ian Romanick <idr@us.ibm.com> | 2005-07-07 20:43:01 +0000 |
---|---|---|
committer | Ian Romanick <idr@us.ibm.com> | 2005-07-07 20:43:01 +0000 |
commit | 38e2fa385de8a77d4e967fa5cbf5b702f752df2b (patch) | |
tree | 4c33b0a8ceacd0177ce566e8b597bceaddfe18a4 /progs | |
parent | 2550844c6e20286113ea7f8d72cd9a9e0b05bc3d (diff) |
Put back the glPopMatrix. This test was derived from blendminmax.c.
When extra code was cut from blendminmax.c's Display function, the
glPopMatrix call was also accidentally cut.
Diffstat (limited to 'progs')
-rw-r--r-- | progs/tests/bug_3101.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/progs/tests/bug_3101.c b/progs/tests/bug_3101.c index fb9ebb1059..761dcbb951 100644 --- a/progs/tests/bug_3101.c +++ b/progs/tests/bug_3101.c @@ -63,6 +63,8 @@ static void Display( void ) glVertex2f(-1, 1); glEnd(); + glPopMatrix(); + glutSwapBuffers(); } |