Subversion Repositories gelsvn

Rev

Rev 601 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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