Hello Neil, thanks for your addon. Some fixes to get it working with 10.1:
this
raw.begin(ofFboBeginMode::NoDefaults);
In PostProcessing.cpp no longer works. It needs to be:
raw.begin(OF_FBOMODE_NODEFAULTS);
And in RenderPass.h these two lines are needed.
#include "ofMain.h"
using namespace std;
After these small changes it works. Tell me if it is better to open a PR.
bye ;)
Hello Neil, thanks for your addon. Some fixes to get it working with 10.1:
this
raw.begin(ofFboBeginMode::NoDefaults);In PostProcessing.cpp no longer works. It needs to be:
raw.begin(OF_FBOMODE_NODEFAULTS);And in RenderPass.h these two lines are needed.
#include "ofMain.h"
using namespace std;
After these small changes it works. Tell me if it is better to open a PR.
bye ;)