Problem with OpenGL in Linux Mint 15
in
Core Library Questions
•
3 months ago
I am getting the following error when I run any code with OpenGL:
- OpenGL error 1280 at bot beginDraw(): invalid enumerant
- OpenGL error 1280 at bot endDraw(): invalid enumerant
and the sketch runs incorrectly. even something as simple as the next code triggers it
- void setup(){
size(10,10,P3D);
}
void draw(){
}
I'm using Linux Mint 15, the latest release, with the open source graphics drivers. But the drivers don't seem to be the problem, these sketches worked fine with Ubuntu 12.10 in this same PC and open source drivers, also the sketches throw the same errors on a laptop with the same Mint.
I did some tests and it seems to be the bundled JOGL libraries the ones that are causing the errors.
I appreciate any help you can give me.
1