Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:12:02

0001 // @(#)root/gl:$Id$
0002 // Authors:  Timur and Matevz, May 2008
0003 
0004 /*************************************************************************
0005  * Copyright (C) 1995-2004, Rene Brun and Fons Rademakers.               *
0006  * All rights reserved.                                                  *
0007  *                                                                       *
0008  * For the licensing terms see $ROOTSYS/LICENSE.                         *
0009  * For the list of contributors see $ROOTSYS/README/CREDITS.             *
0010  *************************************************************************/
0011 
0012 // Window-system specific GL includes.
0013 // Inclusion should only be necessary in in low-level system files.
0014 
0015 #ifndef ROOT_TGLWSIncludes
0016 
0017 #include "RConfigure.h"
0018 #include "TGLIncludes.h"
0019 
0020 #if defined(WIN32)
0021 #  include <GL/wglew.h>
0022 #else
0023 #  if defined(__APPLE__) && !defined(R__HAS_COCOA)
0024 #    define GLEW_APPLE_GLX
0025 #  endif
0026 #  if !defined(R__HAS_COCOA)
0027 #    include <GL/glxew.h>
0028 #  endif
0029 #endif
0030 
0031 #endif