I just downloaded the newest version of processing and encountered this error when trying to run any of my old code. The codes still runs with this error but is sluggish.
My previous version was processing 1.5.1 in which all of my code runs without errors.
I tried running code as simple as this:
void setup(){
size(200,200,OPENGL);
}
void draw(){
}
and still received this error. The code works fine if i use "size(w,h)", but "size(w,h,P3D)" and "size(w,h,OPENGL)" result in errors.
I'm wondering if this is an issue with my graphics card. I have a Toshiba Satellite with an Intel HD Graphics card which I have had trouble with before. Has anybody else had this problem, and are there any known fixes?