I'm having trouble to get fullscreen working. When I run ---------- public class FSETest { public static void main(String[] args) { GraphicsDevice[] devices = GraphicsEnvironment.getLocalGraphicsEnvironment().getScreenDevices(); for (int i = 0; i < devices.length; i++) { GraphicsDevice device = devices[i]; System.out.println("Device " + i + ": ID string=" + device.getIDstring()); System.out.println(" Available accelerated memory: " + device.getAvailableAcceleratedMemory()); System.out.println(" Fullscreen supported: " + device.isFullScreenSupported()); System.out.println(" Display change supported: " + device.isDisplayChangeSupported()); System.out.println(); } } } --------- I get this output. ------------------ Device 0: ID string=:0.0 Available accelerated memory: -1 Fullscreen supported: false Display change supported: false -----------------
I'm running gentoo linux with xorg 7.0 and jdk-6-rc-bin-b88-linux-i586-15_jun_2006 [Message sent by forum member 'tersius' (tersius)] http://forums.java.net/jive/thread.jspa?messageID=123929 =========================================================================== To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff JAVA2D-INTEREST". For general help, send email to [EMAIL PROTECTED] and include in the body of the message "help".