Hello,
I have a C library that makes GL calls (such as delivering vertex, normals, colors, etc) to a GL drawable. I need to interface with this library through a Java application and I could write my own JNI code to setup the GL drawable for this library however it seems like jogl has already encapsulated all the native details for me for the Windows/Linux/Mac flavors. I would like to use jogl to setup the GL drawable and then I would like to get the drawable so that I could hand it off to the C library to deliver the vertices, normals, colors etc.
Is there any way via jogl to get hold of the native drawing area and native GL context? I looked through the source code but it appeared that these methods were protected.
Thanks,
Michael