Skip to content

Instantly share code, notes, and snippets.

@aaronsherwood
Created February 7, 2013 04:13
Show Gist options
  • Save aaronsherwood/4728439 to your computer and use it in GitHub Desktop.
Save aaronsherwood/4728439 to your computer and use it in GitHub Desktop.
header file for https://vimeo.com/59119048
#pragma once
#include "ofMain.h"
class testApp : public ofBaseApp{
public:
void setup();
void update();
void draw();
void keyPressed (int key);
void keyReleased(int key);
void mouseMoved(int x, int y );
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);
void dragEvent(ofDragInfo dragInfo);
void gotMessage(ofMessage msg);
void drawFboTest();
ofVideoPlayer video;
ofImage image;
ofTexture screenGrab;
ofTexture addIt;
int mode;
ofFbo rgbaFboFloat;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment