I am getting the EXCEPTION_ACCESS_VIOLATION only when I uncomment the commented lines (in init method
// Create the the vertex data
initVertexArray(gl);
initNormalArray(gl);
// specify buffer that hold vertex/normal
gl.glVertexPointer(3, GL2.GL_FLOAT, 0, vertexData);
//gl.glNormalPointer(GL2.GL_FLOAT, 0, normalData);
// specify array being used
gl.glEnableClientState(GL2.GL_VERTEX_ARRAY);
//gl.glEnableClientState(GL2.GL_NORMAL_ARRAY);
// draw
gl.glDrawArrays(GL.GL_TRIANGLES, 0, triangleNumber*3);
and the initNormalArray is pretty the same of the Vertex one:
private void initNormalArray(GL2 gl) {
normalData = GLBuffers.newDirectFloatBuffer(triangleNumber*3);
for(int i=0; i<triangleNumber; i++) {
Triangle tmp = triangleArray.get(i);
normalData.put(new float[]{tmp.nx, tmp.ny, tmp.nz});
//System.out.println("nx: "+tmp.nx+" ny: "+tmp.ny+" nz: "+tmp.nz);
}
System.out.println("normalData: "+normalData.toString());
normalData.flip();
System.out.println("normalData: "+normalData.toString());
}
But I get this
(there would be something if stackoverflow will allow a simple paste of the txt file withing a block or code tags)
A fatal error has been detected by the Java Runtime Environment:
EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6b38fd91, pid=5756, tid=4620
JRE version: 6.0_18-b07 Java VM: Java HotSpot(TM) Client VM (16.0-b13 mixed mode windows-x86 ) Problematic frame: C 0x6b38fd91
An error report file with more information is saved as: H:\Dokumente und Einstellungen\gbarbieri\Eigene Dateien\NetBeansProjects\JOpenGL with uda\hs_err_pid5756.log
If you would like to submit a bug report, please visit: http://java.sun.com/webapps/bugreport/crash.jsp The crash happened outside the Java Virtual Machine in native code. See problematic frame for where to report the bug.
Any idea?