Update of /cvsroot/plib/plib
In directory usw-pr-cvs1:/tmp/cvs-serv25725
Modified Files:
Makefile.am
Added Files:
README.GLUT
Log Message:
Added README.GLUT
--- NEW FILE: README.GLUT ---
Though PUI depends on GLUT or freeglut by default, it is possible to
build a GLUT-free PUI library by passing --without-glut to the configure
script if you can live with a couple of limitations:
Since there is no longer any way for PUI to glutGet() the screen
dimensions, your application must tell PUI every time it changes the
screen size:
puSetWindowSize ( int width, int height ) ;
Spreading PUI widgets across multiple Windows does (at the moment) not
work without GLUT.
Without GLUT, PUI can also not create the default PUI fonts from the
seven GLUT bitmap fonts like it normally would. Instead, it tries to load
some textured fonts in the puInit routine. Hence, you have to ensure that
the typewriter.txf, times_bold.txf and helvetica_bold.txf files from
examples/src/fnt/data/old are in the current directory when using the
GLUT-free PUI library.
- Sebastian Ude, August 2002
Index: Makefile.am
===================================================================
RCS file: /cvsroot/plib/plib/Makefile.am,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- Makefile.am 31 Aug 2002 20:43:43 -0000 1.7
+++ Makefile.am 31 Aug 2002 20:46:19 -0000 1.8
@@ -2,8 +2,8 @@
SUBDIRS = src
-EXTRA_DIST = KNOWN_BUGS NOTICE README README.win32 \
- README.mac TODO-1.6 TODO-2.0 \
+EXTRA_DIST = KNOWN_BUGS NOTICE README README.GLUT \
+ README.win32 README.mac TODO-1.6 TODO-2.0 \
TODO_AFTER135 TODO_TILL135 autogen.sh \
plib.dsp plib.dsw transferCvs2WebSite
|