00001 /* 00002 * Physically Based Simulation, SS 2005 00003 * 00004 * Markus Liechti (liechtim@student.ethz.ch) 00005 * Yoshimi Takano (yoshi@student.ethz.ch) 00006 * Stefan Wismer (swismer@student.ethz.ch) 00007 * 00008 * $Id: opengl.h,v 1.4 2005/06/26 00:47:09 ytakano Exp $ 00009 */ 00010 00011 #ifndef __opengl_H__ 00012 #define __opengl_H__ 00013 00014 #ifdef WIN32 00015 #include <windows.h> 00016 #endif 00017 00018 #if defined(__APPLE__) && defined(__MACH__) 00019 #include <OpenGL/gl.h> 00020 #include <OpenGL/glu.h> 00021 #else 00022 #include <GL/gl.h> 00023 #include <GL/glu.h> 00024 #endif 00025 00026 #include <SDL/SDL.h> 00027 00028 #endif