Hi,
i have a machine with two graphic cards an two displays. Now i want to create a jogl application with two newt-windows (fullscreen) on both displays. I tried something like this:
Display display = NewtFactory.createDisplay(null);
Screen screen0 = NewtFactory.createScreen(display, 0);
Screen screen1 = NewtFactory.createScreen(display, 1);
GLCapabilities caps = new GLCapabilities(GLProfile.getDefault());
Window window0 = NewtFactory.createWindow(screen0, caps, true);
Window window1 = NewtFactory.createWindow(screen1, caps, true);
GLWindow glw0 = GLWindow.create(window0);
GLWindow glw1 = GLWindow.create(window1);
But both windows appear on the same screen. Is there an example how to use the multiscreen feature of newt?