diff options
| author | Tim Redfern <tim@getdrop.com> | 2018-03-26 22:44:37 +0100 |
|---|---|---|
| committer | Tim Redfern <tim@getdrop.com> | 2018-03-26 22:44:37 +0100 |
| commit | 82f4504bb849a60a74df906064a426b1c5759f09 (patch) | |
| tree | 41e74fa0b315613800fba76645a21e1ff7c80dbf /gui/src/ofApp.h | |
| parent | 72f38cdf62624dd2bbe14dba0507dabe75ac6d05 (diff) | |
correct syphon export
Diffstat (limited to 'gui/src/ofApp.h')
| -rw-r--r-- | gui/src/ofApp.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gui/src/ofApp.h b/gui/src/ofApp.h index 7a76da3..7224b96 100644 --- a/gui/src/ofApp.h +++ b/gui/src/ofApp.h @@ -94,12 +94,14 @@ class ofApp : public ofBaseApp, public ofxMidiListener{ public: void setup(); void update(); - void updateOutput(ofEventArgs & args); void draw(); - void drawOutput(ofEventArgs & args); void exit(); - void outputKeyPressed(ofKeyEventArgs & args); + void drawGui(ofEventArgs & args); + void updateGui(ofEventArgs & args); + void guiKeyPressed(ofKeyEventArgs & args); + void guiWindowResized(ofResizeEventArgs &resizeargs); + void guiDragEvent(ofDragInfo &dragInfo); void keyPressed(ofKeyEventArgs &keyargs); void keyReleased(int key); @@ -110,8 +112,6 @@ class ofApp : public ofBaseApp, public ofxMidiListener{ void mouseEntered(int x, int y); void mouseExited(int x, int y); void windowResized(int w, int h); - void outputWindowResized(ofResizeEventArgs &resizeargs); - void dragEvent(ofDragInfo dragInfo); void gotMessage(ofMessage msg); vector<string> arguments; @@ -141,7 +141,7 @@ class ofApp : public ofBaseApp, public ofxMidiListener{ ofxSyphonServer mainOutputSyphonServer; // ofxSyphonServer individualTextureSyphonServer; - ofxSyphonClient mClient; + //ofxSyphonClient mClient; bool bSmooth; |
