# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
I have installed the latest version of processing - processing-2.0b8
I have tried using the proclipse plugin
No change.
I am running on a dual core intel machine with win 7 and 4gb.
I have installed the latest nVidia drivers
I have tried running with java 1.6.0_45 and 1.7.0_21
Nothing works.
Any help would be extremely gratefully received with this.
Here is a small sample
import processing.core.PApplet;
public class TestApplet extends PApplet {
private float rot;
public void setup() {
size(800, 800, P3D);
}
public void draw() {
background(200);
pushMatrix();
translate(width/2, height/2);
rotate((float) Math.toRadians(rot));
line(-100, 0, 100, 0);
line(0, -100, 0, 100);
rot += 1f;
popMatrix();
}
}
Running and resizing this causes the crash (on my setup anyway)