Update of /cvsroot/plib/plib/examples/src/pui
In directory usw-pr-cvs1:/tmp/cvs-serv27590
Modified Files:
simple.cxx
Log Message:
Fixed my English (I hope so ...)
Index: simple.cxx
===================================================================
RCS file: /cvsroot/plib/plib/examples/src/pui/simple.cxx,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- simple.cxx 20 Dec 2001 15:50:55 -0000 1.5
+++ simple.cxx 14 Mar 2002 15:45:53 -0000 1.6
@@ -25,7 +25,7 @@
glutPostRedisplay () ;
}
-void displayfn (void)
+void displayfn ( void )
{
glClearColor ( 0.1f, 0.4f, 0.1f, 1.0f ) ;
glClear ( GL_COLOR_BUFFER_BIT ) ;
@@ -64,8 +64,8 @@
However, most applications using PUI do some more things than rendering
PUI widgets. In every "real" program, you usually do need a depth
buffer - we are requesting one in the next line so that PLIB programmers
- can write their applications upon the example code without running
- in problems. */
+ can write their applications upon this example code without running
+ into problems. */
glutInitDisplayMode ( GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH ) ;
@@ -93,6 +93,4 @@
return 0 ;
}
-
-
|