-
Bug
-
Resolution: Fixed
-
P3
-
8
Currently we need to set prism.dirtyopts=false for 3D to render correctly. At present, pretty much all 3D programs have this property set to false in the main block as a temporary workaround:
public static void main(String[] args) {
System.setProperty("prism.dirtyopts", "false");
launch(args);
}
However, with the switch to JDK8, this code no longer get executed. We need to fix this bug sooner than later.
public static void main(String[] args) {
System.setProperty("prism.dirtyopts", "false");
launch(args);
}
However, with the switch to JDK8, this code no longer get executed. We need to fix this bug sooner than later.
- duplicates
-
JDK-8117710 meshViewer.LightMotion: cylinder's reflected light changes discontinuously
-
- Closed
-
- relates to
-
JDK-8117827 Dirty regions don't work with moving camera
-
- Closed
-