-
Enhancement
-
Resolution: Unresolved
-
P4
-
None
-
None
X11GraphicsDevice.java has following restriction
public boolean isDisplayChangeSupported() {
return (isFullScreenSupported()
&& (getFullScreenWindow() != null)
&& !((X11GraphicsEnvironment) GraphicsEnvironment
.getLocalGraphicsEnvironment()).runningXinerama());
}
So display mode change is available only when running single screen.
With Crtc and Output XRandR APIs it is possible to remove this limitation.
public boolean isDisplayChangeSupported() {
return (isFullScreenSupported()
&& (getFullScreenWindow() != null)
&& !((X11GraphicsEnvironment) GraphicsEnvironment
.getLocalGraphicsEnvironment()).runningXinerama());
}
So display mode change is available only when running single screen.
With Crtc and Output XRandR APIs it is possible to remove this limitation.
- relates to
-
JDK-8354415 [Ubuntu25.04] api/java_awt/GraphicsDevice/indexTGF.html#SetDisplayMode - setDisplayMode_REFRESH_RATE_UNKNOWN fails: Height is different on vnc
-
- Resolved
-