[Plib-cvs] plib/src/ssg ssg.h,1.143,1.144
Brought to you by:
sjbaker
From: Sebastian U. <ud...@us...> - 2002-08-30 18:21:15
|
Update of /cvsroot/plib/plib/src/ssg In directory usw-pr-cvs1:/tmp/cvs-serv6431/src/ssg Modified Files: ssg.h Log Message: Don't include OpenGL header files from ul.h any longer Index: ssg.h =================================================================== RCS file: /cvsroot/plib/plib/src/ssg/ssg.h,v retrieving revision 1.143 retrieving revision 1.144 diff -u -d -r1.143 -r1.144 --- ssg.h 28 Aug 2002 04:58:03 -0000 1.143 +++ ssg.h 30 Aug 2002 18:21:12 -0000 1.144 @@ -25,6 +25,14 @@ #ifndef _INCLUDED_SSG_H_ #define _INCLUDED_SSG_H_ +#ifdef __APPLE__ +# include <OpenGL/gl.h> +# include <OpenGL/glu.h> +#else +# include <GL/gl.h> +# include <GL/glu.h> +#endif + #include "ul.h" #include "sg.h" #include "ssgconf.h" |