Small changes required for windows compilation of all the samples
This commit is contained in:
parent
9df71dd564
commit
012c6f6d50
|
@ -21,12 +21,13 @@
|
|||
* *
|
||||
****************************************************************************/
|
||||
|
||||
// This sample require gl.
|
||||
// This sample requires gl.
|
||||
#ifndef GLU_VERSIONS
|
||||
#ifdef __APPLE__
|
||||
#include <OpenGL/gl.h>
|
||||
#else
|
||||
#ifdef _WIN32
|
||||
#define NOMINMAX
|
||||
#include <windows.h>
|
||||
#endif
|
||||
#include <GL/gl.h>
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
#include <assert.h>
|
||||
#include <string>
|
||||
#include <cstring>
|
||||
#include <ctime>
|
||||
#include <vector>
|
||||
#include <set>
|
||||
#include <stack>
|
||||
|
|
Loading…
Reference in New Issue