CGII/framework/include/libs/cgv_gl/gl/wgl.h
2018-05-17 15:50:03 +02:00

10 lines
202 B
C

#pragma once
/*! file use this header to include opengl, glu, glew and wglew. */
#ifdef WIN32
#include <GL/glew.h>
#include <GL/wglew.h>
#else
#include <GL/glew.h>
#include <GL/glxew.h>
#endif