@Override
public void reshape(GLAutoDrawable drawable, int x, int y, int w, int h) {
GL2 gl = drawable.getGL().getGL2();
gl.glViewport(0, 0, w, h);
gl.glMatrixMode(GLMatrixFunc.GL_PROJECTION);
gl.glLoadIdentity();
this.overlay.updateSize(w, h);
this.glu.gluPerspective(60.0f, w * 1.0f / h, .01f, 1000.0f); // FOV,
// AspectRatio,
// NearClip,