clray
annotate src/ogl.h @ 37:ca445da26588
out of resources?!
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Fri, 27 Aug 2010 01:00:04 +0100 |
parents | |
children | 1ae68d46cfda |
rev | line source |
---|---|
John@14 | 1 #ifndef OGL_H_ |
John@14 | 2 #define OGL_H_ |
John@14 | 3 |
John@14 | 4 #ifndef __APPLE__ |
John@14 | 5 |
John@14 | 6 #if defined(WIN32) || defined(__WIN32__) |
John@14 | 7 #include <windows.h> |
John@14 | 8 #endif |
John@14 | 9 |
John@14 | 10 #include <GL/gl.h> |
John@14 | 11 #include <GL/glu.h> |
John@14 | 12 |
John@14 | 13 #else /* __APPLE__ */ |
John@14 | 14 #include <OpenGL/gl.h> |
John@14 | 15 #include <OpenGL/glu.h> |
John@14 | 16 #endif |
John@14 | 17 |
John@14 | 18 |
John@14 | 19 #endif /* OGL_H_ */ |