Skip to content

Instantly share code, notes, and snippets.

@schwittlick
Created September 1, 2015 20:03
Show Gist options
  • Save schwittlick/94bf902a4e7b02a8fa88 to your computer and use it in GitHub Desktop.
Save schwittlick/94bf902a4e7b02a8fa88 to your computer and use it in GitHub Desktop.
openframeworks smallestexample
#include "ofMain.h"
class ofApp : public ofBaseApp {
public:
void setup() {
}
void update() {
}
void draw() {
ofBackground( 0 );
}
};
int main() {
ofSetupOpenGL( 1280, 720, OF_WINDOW );
ofRunApp( new ofApp() );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment