Projektordner für das Team Deutsches Museum (FORUM).
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.cpp 376B

1234567891011121314151617
  1. #include "ofMain.h"
  2. #include "ofApp.h"
  3. //========================================================================
  4. int main( ){
  5. ofSetupOpenGL(1000,1000, OF_WINDOW); // <-------- setup the GL context
  6. ofGLFWWindowSettings settings;
  7. settings.setGLVersion(3, 2);
  8. settings.setSize(1280, 800);
  9. ofCreateWindow(settings);
  10. ofRunApp(new ofApp());
  11. ofRunApp( new ofApp());
  12. }