Posted by
imakerobots on
Dec 29, 2023; 6:15pm
URL: https://forum.jogamp.org/glDrawArrays-crashes-Java-but-only-on-client-s-machine-tp4043227.html
Sorry this isn't a fully fleshed out bug report. I still suspect it's something I'm doing, but I hope that someone might have a clue what I've done.
Windows 11, Jogamp 2.5.0, Java 21. Client says their video card is
NVidia GeForce GTX 1080 Ti with dedicated 27,536 Mb MemMy log file says...
09:33:15.744 [AWT-EventQueue-0] INFO c.m.ro3.apps.render.OpenGLPanel - availability=Natives[
GL4bc true [4.6 (Compat profile, arb, compat[ES2, ES3, ES31, ES32], FBO, hardware)],
GL4 true [4.6 (Core profile, arb, compat[ES2, ES3, ES31, ES32], FBO, hardware)],
GLES3 false,
GL3bc true [4.6 (Compat profile, arb, compat[ES2, ES3, ES31, ES32], FBO, hardware)],
GL3 true [4.6 (Core profile, arb, compat[ES2, ES3, ES31, ES32], FBO, hardware)],
GL2 true [4.6 (Compat profile, arb, compat[ES2, ES3, ES31, ES32], FBO, hardware)],
GLES2 false,
GLES1 false, count 5 / 8],
Common[, GL4ES3 true, GL2GL3 true, GL2ES2 true, GL2ES1 true],
Mappings[GL3bc GLProfile[GL3bc/GL4bc.hw],
GL2ES1 GLProfile[GL2ES1/GL4bc.hw],
GL4ES3 GLProfile[GL4ES3/GL4.hw],
GL2ES2 GLProfile[GL2ES2/GL4.hw],
GL4bc GLProfile[GL4bc/GL4bc.hw],
GL2 GLProfile[GL2/GL4bc.hw],
GL4 GLProfile[GL4/GL4.hw],
GL3 GLProfile[GL3/GL4.hw],
GL2GL3 GLProfile[GL2GL3/GL4bc.hw],
,
default GLProfile[GL4bc/GL4bc.hw],
count 9 / 12]
09:33:15.745 [AWT-EventQueue-0] INFO c.m.ro3.apps.render.OpenGLPanel - capabilities=rgba 8/8/8/1,
opaque,
accum-rgba 0/0/0/0,
dp/st/ms 16/8/4,
sample-ext default,
dbl,
mono ,
hw,
GLProfile[GL4bc/GL4bc.hw],
on-scr[.]
then creates the canvas, calls init... and then in display it dies with the attached crash report:
hs_err_pid9836.logSpecifically...
Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
j jogamp.opengl.gl4.GL4bcImpl.dispatch_glDrawArrays1(IIIJ)V+0
j jogamp.opengl.gl4.GL4bcImpl.glDrawArrays(III)V+45
j com.marginallyclever.ro3.mesh.Mesh.render(Lcom/jogamp/opengl/GL3;II)V+166
j com.marginallyclever.ro3.mesh.Mesh.render(Lcom/jogamp/opengl/GL3;)V+32
j com.marginallyclever.ro3.apps.render.renderpasses.DrawBackground.drawSkybox(Lcom/jogamp/opengl/GL3;Lcom/marginallyclever/ro3/node/nodes/Camera;)V+279
j com.marginallyclever.ro3.apps.render.renderpasses.DrawBackground.draw(Lcom/marginallyclever/ro3/apps/render/Viewport;)V+116
j com.marginallyclever.ro3.apps.render.Viewport.renderAllPasses()V+44
j com.marginallyclever.ro3.apps.render.Viewport.display(Lcom/jogamp/opengl/GLAutoDrawable;)V+54
I don't think I'm doing anything too spicy with my draw arrays call... so... any idea what I'm doing wrong?
Thank you!