Why do I get this message : No library found for com.jogamp.opengl.util.gl2

Hello all,

Under P5 2.1.1, everytime I run a sketch with low-level OpenGL calls, the sketch runs fine, but I allways get this message appearing in red in the console :

No library found for com.jogamp.opengl.util.gl2

Here is the list of imports I use :

import com.jogamp.opengl.util.gl2.GLUT;
import java.nio.*;
import java.util.*;
import javax.media.opengl.GL2;
import javax.media.opengl.glu.GLU;

It is strange because I can use all OpenGL objects in my sketch (GL2, GLU, GLUT, etc).

Does someone have a clue why I get this message ?

Tagged:

Answers

  • Just as a start, have you downloaded and adapted the jogamp lib from here: http://jogamp.org/ to work in processing and put it in your Processing/libraries folder?

    If everything you want to do in your code works, why not just remove the import? It looks like one of the other opengl libs may be handling the functionality you are looking for.

    -ak

  • Yes I have been forced to donwload and install JOGL 2 myself..

    But, I need the import because I use GLUT..

    As everything else is working fine, it's not a big problem, but I want to understand where the bug is.

Sign In or Register to comment.