InterviewSolution
| 1. |
Nothing Is Being Drawn In A Canvas In Fullscreen Mode? |
|
Answer» A PROBLEM that seems to be inherent in mixing swing with heavyweight components on a Win32 system (Java3D suffers from the same problem, for example). This is due to some INTERACTIONS with DirectDraw. To get the rendering HAPPENING again, SET the following property on the command line to DISABLE DirectDraw usage: -Dsun.java2d.noddraw=true. A problem that seems to be inherent in mixing swing with heavyweight components on a Win32 system (Java3D suffers from the same problem, for example). This is due to some interactions with DirectDraw. To get the rendering happening again, set the following property on the command line to disable DirectDraw usage: -Dsun.java2d.noddraw=true. |
|