Re: jogl crashes video card driver
Posted by
gouessej on
Jan 09, 2013; 10:59am
URL: https://forum.jogamp.org/jogl-crashes-video-card-driver-tp4026980p4027752.html
runiter wrote
I used Renanse git but then I override the JOGL jars with the latest. So now it's more clear where the problem is coming from:
I noticed the Ardor3D BoxExample works fine, but somehow in my code the following code in JoglAwtCanvas.init() is never invoked:
invoke(true, new GLRunnable() {
@Override
public boolean run(final GLAutoDrawable glAutoDrawable) {
_canvasRenderer.init(_settings, true);// true - do swap in renderer.
return true;
}
});
When debugging I noticed that the invoke method is called successfully, but the GLRunnable never runs.
What could be a possible reason that the GLRunnable is never executed in my application?
This code is called within the next GLAutoDrawable.display() call. I don't know what you do in your code, sorry.