private void renderToFB(double angle, FBO fbo) {
   if (fbo != null) {
     fbo.bind();
     renderImpl(angle);
     fbo.unbind();
   }
 }