Subversion Repositories gelsvn

Rev

Rev 178 | Rev 601 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 178 Rev 594
-
 
1
/**
-
 
2
 * @file gel_gl.h
-
 
3
 * @brief GEL gl.h wrapper
-
 
4
 */
-
 
5
/* ----------------------------------------------------------------------- *
-
 
6
 * This file is part of GEL, http://www.imm.dtu.dk/GEL
-
 
7
 * Copyright (C) the authors and DTU Informatics
-
 
8
 * For license and list of authors, see ../../doc/intro.pdf
-
 
9
 * ----------------------------------------------------------------------- */
-
 
10
 
1
#ifndef __GRAPHICS_GEL_GL_H__
11
#ifndef __GRAPHICS_GEL_GL_H__
2
#define __GRAPHICS_GEL_GL_H__
12
#define __GRAPHICS_GEL_GL_H__
3
 
13
 
4
#ifdef WIN32
14
#ifdef WIN32
5
#include <windows.h>
15
#include <windows.h>
6
#endif
16
#endif
7
#if defined(__APPLE__) && defined(__MACH__)
17
#if defined(__APPLE__) && defined(__MACH__)
8
#include <OpenGL/gl.h>
18
#include <OpenGL/gl.h>
9
#else
19
#else
10
#include <GL/gl.h>
20
#include <GL/gl.h>
11
#endif
21
#endif
12
 
22
 
13
#endif
23
#endif
14
 
24