Advertisement
Guest User

Untitled

a guest
Jul 29th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #include <GL/glew.h>
  2. #include <GL/glut.h>
  3. #pragma comment(lib, "glew32.lib")
  4. int main(int argc, char* argv[])
  5. {
  6. glutInit(&argc, argv);
  7. glutInitWindowSize(200, 200);
  8. glutCreateWindow("Hello");
  9. glutMainLoop();
  10. return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement