openFrameworks 0.8でのマルチディスプレイなフルスクリーンのやりかた

#include "testApp.h" 
#include "ofAppGLFWWindow.h"
int main(){
	ofAppGLFWWindow win;
	win.setMultiDisplayFullscreen(true);
	ofSetupOpenGL(&win, 1920+1024,1080+768, OF_FULLSCREEN);
	ofRunApp(new testApp());
}