diff options
| author | Tim Redfern <tim@getdrop.com> | 2017-08-31 00:34:32 +0100 |
|---|---|---|
| committer | Tim Redfern <tim@getdrop.com> | 2017-08-31 00:34:32 +0100 |
| commit | b0d54aadaf9dfb3b2f14974f55b3a725619ea445 (patch) | |
| tree | ad882b21f92f3124cb0713494d15fbc4614ecfc7 /gui/src/ofApp.h | |
| parent | 52f12dfc10edfc4dd063b610f65dd2e901d3080c (diff) | |
correct window scale
Diffstat (limited to 'gui/src/ofApp.h')
| -rw-r--r-- | gui/src/ofApp.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gui/src/ofApp.h b/gui/src/ofApp.h index ceb3e41..ac6d850 100644 --- a/gui/src/ofApp.h +++ b/gui/src/ofApp.h @@ -10,7 +10,9 @@ class ofApp : public ofBaseApp{ public: void setup(); void update(); + void updateOutput(ofEventArgs & args); void draw(); + void drawOutput(ofEventArgs & args); void keyPressed(ofKeyEventArgs &keyargs); void keyReleased(int key); @@ -21,6 +23,7 @@ class ofApp : public ofBaseApp{ 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); |
