How does one make an app using Xith fullscreen? Trying one of the demos (Xith3DAseGroupTest), I think the following code is supposed to make the monitor switch to fullscreen mode:
CanvasPeer canvasPeer =
renderPeer.makeCanvas(
null,
screenSize.width - 200,
screenSize.height - 200,
16,
true);
But it doesn’t. It simply makes a window without any borders or a titlebar. Is it supposed to do this? Or is fullscreen mode not supported on OS X? This would seem odd since JOGL switches it fine…
Example JOGL code:
GraphicsEnvironment.getLocalGraphicsEnvironment().
getDefaultScreenDevice().setFullScreenWindow(frame);
GraphicsEnvironment.getLocalGraphicsEnvironment().
getDefaultScreenDevice().setDisplayMode((new DisplayMode(800, 600, 32,
DisplayMode.REFRESH_RATE_UNKNOWN)));