ofxPiMapper fixed for C++17 & oF 12.0
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.
 
 

19 lines
378 B

#include "ofxPiMapper.h"
ofxPiMapper::ofxPiMapper(){}
void ofxPiMapper::setup(){
_application.setup();
}
void ofxPiMapper::draw(){
_application.draw();
}
void ofxPiMapper::registerFboSource(ofx::piMapper::FboSource & fboSource){
_application.addFboSource(fboSource);
}
bool ofxPiMapper::loadXmlSettings(string fileName){
return _application.loadXmlSettings(fileName);
}