The code bellow work on Processing 3.0a5 but not on Processing 3.0a10. I know this code is not the official example, but it's very easy to use, so maybe there is something to do in Syphon Library ?
That be awesome :)
import codeanticode.syphon.*;
SyphonServer server;
void setup() {
size(500, 500, P3D);
server = new SyphonServer(this, "#PParis15");
}
void draw() {
background(255 *abs(sin(frameCount *.01))) ;
server.sendScreen();
}