hello,
i am trying to use ofxAwesomium + ofxSyphon to send a 5300 x 1000 pixels web page to a syphon client (the oF app being the syphon server)
//--------------------------------------------------------------
void ofApp::setup(){
ofSetFrameRate(60);
syphonServer.setName("Awesome web page");
browser.setup(5300, 1000);
browser.loadURL("http://my.page.html");
}
//--------------------------------------------------------------
void ofApp::update(){
browser.updateCore();
browser.update();
}
//--------------------------------------------------------------
void ofApp::draw(){
browser.draw(0, 0);
syphonServer.publishScreen();
}
but i seems that the app window is limited to the screen size, even if i set window size in main.cpp
how can i have my app window to 5300 x 1000 ?
thanks