Following the advice of other posts on this forum I am editing main.cpp to get multi-monitor fullscreen (oF 084):
#include "ofMain.h"
#include "ofApp.h"
#include "ofAppGLFWWindow.h"
int main( ){
ofAppGLFWWindow window;
window.setMultiDisplayFullscreen(true);
ofSetupOpenGL(&window,1024,768,OF_FULLSCREEN);
ofRunApp(new ofApp());
}
It works at first, but then intermittently (and non-deterministically) it will compile an app which renders no output. That is, it fills both screens but with gray, the default when you don’t render anything.
I have of course, disabled ‘Displays have separate spaces’ in Mission control preferences pane. This problem occurs on my MacBook Late 2011, but doesn’t occur on my MacBook Late 2013.
(which doesn’t help as I need both laptops)