Shell openglshell = new Shell(display);
openglshell.setLayout(new FillLayout());
// Create the actual graphpanel
Composite body = new Composite(openglshell, SWT.NONE);
Layout opengllayout = new FillLayout();
body.setLayout(opengllayout);
SWTOpenGLJOGLNanoGraphPanel joglpanel = new SWTOpenGLJOGLNanoGraphPanel(body);
joglpanel.setNanoGraph(gp.getNanoGraph());
openglshell.setText("SWT/JOGL Nanograph test 3D screen");