Quelcode des Partikelsystems Boden
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 498B

123456789101112131415161718192021
  1. #include "ofMain.h"
  2. #include "ofApp.h"
  3. //========================================================================
  4. int main( ){
  5. //ofSetupOpenGL(3840,1200, OF_WINDOW); // <-------- setup the GL context
  6. ofGLFWWindowSettings settings;
  7. settings.setGLVersion(3, 2);
  8. settings.setSize(3840, 1200);
  9. settings.decorated = false;
  10. ofCreateWindow(settings);
  11. // this kicks off the running of my app
  12. // can be OF_WINDOW or OF_FULLSCREEN
  13. // pass in width and height too:
  14. ofRunApp( new ofApp());
  15. }