#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 be included before they are. $Id: gl.h 292 2002-01-24 17:43:59Z garland $ ************************************************************************/ #include "gfx.h" #if defined(WIN32) # include #endif #if defined(__APPLE__) # include # include #else # include # include #endif // GFXGL_INCLUDED #endif