Skip to content

Commit

Permalink
Week 6 Code Added
Browse files Browse the repository at this point in the history
  • Loading branch information
mgs committed Oct 15, 2019
1 parent 738869c commit fab3054
Show file tree
Hide file tree
Showing 11 changed files with 246 additions and 271 deletions.
1 change: 1 addition & 0 deletions lm-week4/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This weeks code changes are in ofxMLTK, make sure to update the library.
13 changes: 0 additions & 13 deletions lm-week4/src/main.cpp

This file was deleted.

201 changes: 0 additions & 201 deletions lm-week4/src/ofApp.cpp

This file was deleted.

57 changes: 0 additions & 57 deletions lm-week4/src/ofApp.h

This file was deleted.

Binary file added lm-week5/.DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions lm-week5/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This weeks code changes are in ofxMLTK, make sure to update the library.
File renamed without changes.
Empty file added lm-week6/bin/data/.gitkeep
Empty file.
19 changes: 19 additions & 0 deletions lm-week6/src/main.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#include "ofMain.h"
#include "ofAppGLFWWindow.h"
#include "ofApp.h"

//========================================================================
int main( ){
ofGLFWWindowSettings settings;
//this is an ugly hack only for osx in order to get back the whole depth buffer.
//It is an openGL driver issue....
settings.numSamples = 0;
settings.setGLVersion(3, 2);
settings.multiMonitorFullScreen = false;

settings.resizable = false;
settings.setSize(1080,1080);
settings.windowMode = OF_WINDOW;
ofCreateWindow(settings);
ofRunApp(new ofApp());
}
Loading

0 comments on commit fab3054

Please sign in to comment.