// 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");
openglshell.setSize(800, 800);
openglshell.setLocation(display.getMonitors()[0].getClientArea().width - 1000, 0);
openglshell.open();
return openglshell;