hello,
the following problem is only occuring under linux (ubuntu, ati-fglrx drivers):
i have a jframe which is divided by a JSplitFrame into a GLCanvas part and a JPanel part. the jpanel part contains several userinterface elements like JCheckBox, JComboBox, …
now whenever something happens in the jpanel part (like moving the mouse over any component) the rendering in the GLCanvas is blocked for a short time. this looks terrible
i tried to start the whole thing using:
javax.swing.SwingUtilities.invokeLater(new Runnable() {
public void run() {
new MainFrame();
}
});
but without any success.
the same program under windows runs fine, without any blocking.
how could i resolve this problem? thanks!