Im at a loss as to how I use the glBlendEquationEXT function in jogl. In c++ you have to call wglGetProcAddress, among other things, to get the extension’s process address to use. the code in c++ would be:
typedef void (APIENTRY * PFNGLBLENDEQUATIONEXTPROC) (int mode);
PFNGLBLENDEQUATIONEXTPROC glBlendEquationEXT;
//...
glBlendEquationEXT = (PFNGLBLENDEQUATIONEXTPROC) wglGetProcAddress("glBlendEquationEXT");
How can I do this in jogl? When I simply use glBlendEquationEXT it says:
Method “glBlendEquationEXT” not available
yet when i run the c++ code using the above code, it works fine… im at a loss