Login  Register

Re: JOGL project does not work in a different computer

Posted by r.jaoui on Oct 27, 2021; 3:37pm
URL: https://forum.jogamp.org/JOGL-project-does-not-work-in-a-different-computer-tp4041404p4041415.html

I tried adding that VM argument, but the result is the same (same error and same OpenGL version used).

Also, since I saw that it was important, note that I'm using a GL2 profile here :

PROFILE = GLProfile.get(GLProfile.GL2);
CAPABILITIES = new GLCapabilities(PROFILE);

CAPABILITIES.setSampleBuffers(true);
CAPABILITIES.setNumSamples(8);
CAPABILITIES.setStencilBits(8);
CAPABILITIES.setDoubleBuffered(true);
CAPABILITIES.setPBuffer(true);

panel = new GLJPanel(CAPABILITIES);
listener = new PanelListener(panel);
panel.addGLEventListener(listener);


I also tried newer profiles, of course the same error occurs :/