Reputation: 1505
I'm learning OpenGL and since I'd like stuff to be able to run on the web as untrusted code without explicit user set privileges I'm figuring JOGL is my only solid option, or are there other alternatives? Anyway, it looks like JOGL only supports OpenGL 3.x for the moment, how can I get 4.2?
Upvotes: 1
Views: 737
Reputation: 4075
JOGL 2.0 already supports OpenGL 4.x and has supported OpenGL 3.x for years. JOGL is a part of the JogAmp set of APIs including JOCL (Java binding for OpenCL), JOAL (Java binding for OpenAL) and a Java binding for OpenMAX API. It supports both OpenGL and OpenGL ES in an homogeneous way even on Linux ARM and Android as you can see here and here.
Upvotes: 1