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.
18 lines
492 B
18 lines
492 B
#pragma once
|
|
|
|
#include "ofMain.h"
|
|
#include "FboSource.h"
|
|
|
|
class CustomSource : public ofx::piMapper::FboSource {
|
|
public:
|
|
CustomSource();
|
|
|
|
// These are overrides of FboSource virtual functions.
|
|
// FBO sources are not executing before they have been assigned to a surface.
|
|
void update();
|
|
void draw(); // You don't have to care about fbo.begin() or fbo.end() here
|
|
|
|
private:
|
|
vector<ofRectangle> rects;
|
|
vector<float> rectSpeeds;
|
|
};
|