#include "QuadSource.h" void QuadSource::setup(){ // name name = "test"; // allocate size allocate(1512, 1080); } void QuadSource::update(){ } void QuadSource::draw(){ // Fill FBO with our quads ofClear(0); //ofBackground(255, 120, 10); fbo_in->draw(0, 0); }