small enhancement to Callbackmaker demo
authorDiederick Niehorster <dcnieho@gmail.com>
Tue, 20 Nov 2012 08:57:18 +0000 (08:57 +0000)
committerDiederick Niehorster <dcnieho@gmail.com>
Tue, 20 Nov 2012 08:57:18 +0000 (08:57 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@1459 7f0cb862-5218-0410-a997-914c9d46530a

progs/demos/CallbackMaker/CallbackMaker.c

index 2d31062..9c0d58b 100644 (file)
@@ -65,7 +65,7 @@ Display(void)
   glPushMatrix ();
   glLoadIdentity ();
   glColor3ub ( 0, 0, 0 );
-  glRasterPos2i ( 10, glutGet ( GLUT_WINDOW_HEIGHT ) - 10 );
+  glRasterPos2i ( 10, glutGet ( GLUT_WINDOW_HEIGHT ) - 20 );   /* 10pt margin above 10pt letters */
 
   if ( reshape_called )
   {
@@ -171,6 +171,7 @@ Reshape(int width, int height)
   reshape_width = width ;
   reshape_height = height ;
   reshape_seq = sequence_number ;
+  glViewport(0,0,width,height);
   glutPostRedisplay () ;
 }