You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
695 B

#ifndef GFXGL_INCLUDED // -*- C++ -*-
#define GFXGL_INCLUDED
#if !defined(__GNUC__)
# pragma once
#endif
/************************************************************************
Include standard OpenGL headers. This process is complicated by the
fact that the Win32 OpenGL headers require that <windows.h> be
included before they are.
$Id: gl.h 292 2002-01-24 17:43:59Z garland $
************************************************************************/
#include "gfx.h"
#if defined(WIN32)
# include <windows.h>
#endif
#if defined(__APPLE__)
# include <OpenGL/gl.h>
# include <OpenGL/glu.h>
#else
# include <GL/gl.h>
# include <GL/glu.h>
#endif
// GFXGL_INCLUDED
#endif