Login  Register

Re: OpenGL 4 status

Posted by Worker on May 21, 2011; 8:28pm
URL: https://forum.jogamp.org/OpenGL-4-status-tp2969055p2969914.html

Hi

I thing not, that jogl is the problem. Your driver must support that.
Test your opengl driver version.

E.g. in one from your init methods :

public void init( GLAutoDrawable glDrawable )
  {
    GL2 gl                          = glDrawable.getGL().getGL2();
   // with your logger
    Log.getLogger().info(" GL_VERSION: " + gl.glGetString(GL2.GL_VERSION) );
   // or make a simple
   System.out.println(" GL_VERSION: "+ gl.glGetString(GL2.GL_VERSION) );
  ...........

You must see in your log file or console an output with 4.0 or 4.1
If not, you must update your drivers.

Strange, i have also 270.61(whql) and i have an older card.Double GTX295
(What is exact OGL 3.3)

It seems you have not the correct driver from nvidea selected.