2008-08-06 18:36:30 +00:00
|
|
|
// This file is part of BOINC.
|
2005-01-20 23:22:22 +00:00
|
|
|
// http://boinc.berkeley.edu
|
2008-08-06 18:36:30 +00:00
|
|
|
// Copyright (C) 2008 University of California
|
2004-07-14 21:26:53 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
|
|
// under the terms of the GNU Lesser General Public License
|
|
|
|
// as published by the Free Software Foundation,
|
|
|
|
// either version 3 of the License, or (at your option) any later version.
|
2004-07-14 21:26:53 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
2005-01-20 23:22:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
// See the GNU Lesser General Public License for more details.
|
2004-07-14 21:26:53 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
2004-07-14 21:26:53 +00:00
|
|
|
|
2017-04-08 06:54:49 +00:00
|
|
|
#ifndef BOINC_BOINC_GL_H
|
|
|
|
#define BOINC_BOINC_GL_H
|
2004-07-14 21:26:53 +00:00
|
|
|
|
|
|
|
#if defined(_WIN32)
|
|
|
|
# include <GL/gl.h>
|
|
|
|
# include <GL/glu.h>
|
2009-09-02 23:00:10 +00:00
|
|
|
#if defined(__MINGW32__) || defined(__CYGWIN32__)
|
2005-12-01 00:25:21 +00:00
|
|
|
# include <GL/glext.h>
|
|
|
|
#endif
|
2004-07-14 21:26:53 +00:00
|
|
|
|
|
|
|
#elif defined(__APPLE_CC__)
|
|
|
|
|
2006-03-31 18:30:00 +00:00
|
|
|
# include <OpenGL/gl.h>
|
|
|
|
# include <OpenGL/glu.h>
|
|
|
|
|
2004-07-14 21:26:53 +00:00
|
|
|
#else // !_WIN32, !__APPLE_CC__
|
2004-12-11 05:55:55 +00:00
|
|
|
#include "config.h"
|
2004-07-14 21:26:53 +00:00
|
|
|
|
2011-09-27 19:45:27 +00:00
|
|
|
# if HAVE_GL_H
|
2004-07-14 21:26:53 +00:00
|
|
|
# include <gl.h>
|
2011-09-27 19:45:27 +00:00
|
|
|
# elif HAVE_GL_GL_H
|
2004-07-14 21:26:53 +00:00
|
|
|
# include <GL/gl.h>
|
2011-09-27 19:45:27 +00:00
|
|
|
# elif HAVE_OPENGL_GL_H
|
2004-07-14 21:26:53 +00:00
|
|
|
# include <OpenGL/gl.h>
|
|
|
|
# endif
|
|
|
|
|
2011-09-27 19:45:27 +00:00
|
|
|
# if HAVE_GLX_H
|
2004-07-14 21:26:53 +00:00
|
|
|
# include <glx.h>
|
2011-09-27 19:45:27 +00:00
|
|
|
# elif HAVE_GL_GLX_H
|
2004-07-14 21:26:53 +00:00
|
|
|
# include <GL/glx.h>
|
|
|
|
# endif
|
|
|
|
|
2011-09-27 19:45:27 +00:00
|
|
|
# if HAVE_GLU_H
|
2004-07-14 21:26:53 +00:00
|
|
|
# include <glu.h>
|
2011-09-27 19:45:27 +00:00
|
|
|
# elif HAVE_GL_GLU_H
|
2004-07-14 21:26:53 +00:00
|
|
|
# include <GL/glu.h>
|
2011-09-27 19:45:27 +00:00
|
|
|
# elif HAVE_OPENGL_GLU_H
|
2004-07-14 21:26:53 +00:00
|
|
|
# include <OpenGL/glu.h>
|
|
|
|
# endif
|
|
|
|
|
|
|
|
#endif // _WIN32
|
|
|
|
|
|
|
|
#endif
|