You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
288 B
21 lines
288 B
#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);
|
|
}
|