-
Bug
-
Resolution: Duplicate
-
P4
-
9
-
None
-
generic
-
linux
Currently GraphicsDevice#getDisplayMode() does not receive mode from native platform in case of Xinerama and returns the default mode form getBounds():
Rectangle r = gc.getBounds();
return new DisplayMode(r.width, r.height,
DisplayMode.BIT_DEPTH_MULTI,
DisplayMode.REFRESH_RATE_UNKNOWN);
The corresponding native code need to be fixed to return the actual mode,
Rectangle r = gc.getBounds();
return new DisplayMode(r.width, r.height,
DisplayMode.BIT_DEPTH_MULTI,
DisplayMode.REFRESH_RATE_UNKNOWN);
The corresponding native code need to be fixed to return the actual mode,
- duplicates
-
JDK-8167486 Device.getDisplayMode() doesn't report refresh rate on Linux in case of dual screen
-
- Resolved
-
- relates to
-
JDK-8022810 Cannot list all the available display modes on Ubuntu linux in case of two screen devices
-
- Resolved
-