From 0e436679aa8c09a08e20849f204c969eb2d875b8 Mon Sep 17 00:00:00 2001 From: Comment Date: Wed, 26 Feb 2014 10:57:16 +0000 Subject: initial commit --- glitcher/src/ofApp.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 glitcher/src/ofApp.h (limited to 'glitcher/src/ofApp.h') diff --git a/glitcher/src/ofApp.h b/glitcher/src/ofApp.h new file mode 100644 index 0000000..fd72e87 --- /dev/null +++ b/glitcher/src/ofApp.h @@ -0,0 +1,24 @@ +#pragma once + +#include "ofMain.h" +#include "ofxOpenCv.h" + + +class ofApp : public ofBaseApp { +public: + + void setup(); + void update(); + void draw(); + void exit(); + + void keyPressed(int key); + void mouseDragged(int x, int y, int button); + void mousePressed(int x, int y, int button); + void mouseReleased(int x, int y, int button); + void windowResized(int w, int h); + + ofxCvColorImage buffer; + + ofFbo renderFBO; +}; -- cgit v1.2.3