[Plib-cvs] plib/examples/src/ssg/shapes Makefile.am,NONE,1.1 shapes.cxx,NONE,1.1
Brought to you by:
sjbaker
From: Steve B. <sj...@us...> - 2005-02-02 15:48:22
|
Update of /cvsroot/plib/plib/examples/src/ssg/shapes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26585/plib/examples/src/ssg/shapes Added Files: Makefile.am shapes.cxx Log Message: Added a demo for ssgaShapes. Fixed the diameter of ssgaSphere. Fixed inability to add colour to the ssgaTeapot. --- NEW FILE: Makefile.am --- if BUILD_SSG noinst_PROGRAMS = shapes shapes_SOURCES = shapes.cxx shapes_LDADD = -lplibssgaux -lplibssg -lplibsg -lplibul -lplibpw $(OGL_LIBS) endif --- NEW FILE: shapes.cxx --- /* PLIB - A Suite of Portable Game Libraries Copyright (C) 2001 Steve Baker This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA For further information visit http://plib.sourceforge.net [...141 lines suppressed...] /* The works. */ int main ( int, char ** ) { init_graphics () ; load_database () ; while ( 1 ) redraw () ; return 0 ; } |