Skip to content

Instantly share code, notes, and snippets.

@Temaruk
Created September 28, 2012 12:32
Show Gist options
  • Save Temaruk/3799541 to your computer and use it in GitHub Desktop.
Save Temaruk/3799541 to your computer and use it in GitHub Desktop.
Computer Graphics course, University of Szeged - Linux and OS X compatible GLUT header inclusion
/* This needs to be changed. */
#include <GL/glut.h>
/* Into the following: */
#ifdef __APPLE__
# include <GLUT/glut.h>
#else
# include <GL/glut.h>
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment