Hi,
FSEM mode isn’t working for me, any reason why? I am using Windows XP SP2 and Java 6 RC. The snippet of code I use for activating it follows:
if (!running && animator == null) {
animator = new Thread(this);
animator.start();
if (device.isFullScreenSupported() && fullscreen) {
device.setFullScreenWindow(this);
} else {
setResizable(false);
setVisible(true);
}
}
All that appears for me is a regular maximized window with the borders and all.
The other question is: why is it antialiased? I have a GLCanvas in it, drawing some OpenGL stuff, and I didn’t do anything in my code for it. In windowed mode it seems not to do the antialiasing, but in this pseudo-fullscreen it is antialiased.