Freeglut working

This commit is contained in:
2016-04-21 10:49:59 +02:00
parent 833cd13d9c
commit 973cb61659
4 changed files with 20 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
#include <GL/freeglut.h>
int main(int argc, char* argv[])
{
glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH);
}