Skip to content

Instantly share code, notes, and snippets.

View victor-shepardson's full-sized avatar

Victor Shepardson victor-shepardson

View GitHub Profile
@victor-shepardson
victor-shepardson / gist:6127aeb8de4e4b7b023c
Created May 4, 2015 21:24
simple texture feedback example (untested)
//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);