[Plib-cvs] plib/examples/src/fnt fnt_test.cxx,1.9,1.10
Brought to you by:
sjbaker
From: Bram S. <br...@us...> - 2005-07-05 15:43:33
|
Update of /cvsroot/plib/plib/examples/src/fnt In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21001 Modified Files: fnt_test.cxx Log Message: Added tricky case to font test Index: fnt_test.cxx =================================================================== RCS file: /cvsroot/plib/plib/examples/src/fnt/fnt_test.cxx,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- fnt_test.cxx 7 Oct 2003 03:00:07 -0000 1.9 +++ fnt_test.cxx 5 Jul 2005 15:43:18 -0000 1.10 @@ -214,6 +214,13 @@ text -> puts ( "0123456789!@#$%^&*()+-={}[]:\"'<>?,./`~_" ) ; text -> end () ; + text -> setPointSize ( 9.0f ) ; + text -> begin () ; + glColor3f ( 0, 0, 0 ) ; + text -> start2f ( -50.0f, 265.0f ) ; + text -> puts ( "This is a very long line, in fact, this line is so long, that it starts left of viewport. We are curious to see wether this line is still visible in plib." ) ; + text -> end () ; + glDisable ( GL_TEXTURE_2D ) ; glBegin ( GL_LINE_LOOP ) ; glColor3f ( 1.0f, 0.0f, 1.0f ) ; |