I am trying to look into the curve implementation of the JOGL TextRenderer class. According to a post by mr Goethel it is a better alternative to the awt implementation. It appears, however, that this new TextRenderer is missing from JOGL. It is supposed to be in the same region as this. Does anyone know if this feature is deprecated, removed etc?
From looking into it, there doesn't appear to have been announcements to remove the class, but there was some activity on the github repository graph/curve/opengl recently.
Thank you very much for your help.
Edit: Sven Goethel pointed me to an implementation of awt TextRenderer. This blob works perfectly without messing. But bear in mind, speaking as an openGL noob, don't forget to unbind any programs or other stuff prior to rendering text.
gl.glUseProgram(0);
gl.glBindVertexArray(0);
//etc...
//do textrendering stuffs