This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//in your .h file if using one | |
ofShader shader; | |
ofFbo fbo; | |
int w, h; | |
//in .cpp file | |
void ofApp::setup(){ | |
w = 640; h=480; | |
ofEnableDataPath(); | |
ofSetWindowShape(w,h); |
NewerOlder