Hey all
I've been trying to get jogl on my Ubuntu to work. I'm using Kernel 3.5.7 which accordingly to 
http://intellinuxgraphics.org/2012.07.html contains a driver for my Intel HD 4000 that supports OpenGL 3. 
Nonetheless, when I call something along these lines: 
public GLRenderContext(GLAutoDrawable drawable)
        {
                gl = drawable.getGL().getGL3();
                gl.glEnable(GL3.GL_DEPTH_TEST);
        gl.glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
        
I get this exception:
javax.media.opengl.GLException: Not a GL3 implementation
Is there any hope to get this to work on Linux? Thanks already in advance!