Some of you may have GLCanvas (a heavyweight)
contained inside Swing containers. It definitely
works and you get the speed of GLCanvas with
the convenience of Swing. However, you may notice
GLCanvas flickering badly when resizing it via
a Swing container. I found a method that helps
remove that flicker a great deal:
System.setProperty(“sun.awt.noerasebackground”, “true”);
It turns off automatic background filling of
AWT components. Have fun
.rex