Full screen doesn't work?

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)));

Java Cool Dude’s demos can run in Full Screen - in fact many people (including myself) use his “screen options” utility (or a modified version) to provide this feature in our projects.

http://xith.org/demo/JavaCoolDude.php

Will.

[quote]Java Cool Dude’s demos can run in Full Screen - in fact many people (including myself) use his “screen options” utility (or a modified version) to provide this feature in our projects.

http://xith.org/demo/JavaCoolDude.php

Will.
[/quote]
Thanks for the link! I’ll check it out.