2016-02-07 20:42:02 +00:00
|
|
|
//
|
|
|
|
// OpenGL.h
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 07/02/2016.
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef OpenGL_h
|
|
|
|
#define OpenGL_h
|
|
|
|
|
|
|
|
// TODO: figure out correct include paths for other platforms.
|
2016-03-09 03:53:29 +00:00
|
|
|
#ifdef __APPLE__
|
|
|
|
#if TARGET_OS_IPHONE
|
|
|
|
#else
|
|
|
|
#include <OpenGL/OpenGL.h>
|
|
|
|
#include <OpenGL/gl3.h>
|
2017-01-08 16:13:20 +00:00
|
|
|
#include <OpenGL/gl3ext.h>
|
2016-03-09 03:53:29 +00:00
|
|
|
#endif
|
2017-11-09 03:36:41 +00:00
|
|
|
#else
|
2017-11-10 03:04:49 +00:00
|
|
|
#define GL_GLEXT_PROTOTYPES
|
2017-11-09 03:36:41 +00:00
|
|
|
#include <GL/gl.h>
|
2016-03-09 03:53:29 +00:00
|
|
|
#endif
|
2016-02-07 20:42:02 +00:00
|
|
|
|
|
|
|
#endif /* OpenGL_h */
|