We are using JOGL to display our 2D images in our Swing application. I am wondering should we use EDT to call JOGL for image drawing or not? Does JOGL use EDT to draw the images?
Do you use a GLEventListener? Please avoid making the OpenGL context current on several threads, call your JOGL code directly or indirectly in GLEventListener.display() or use GLAutoDrawable.invoke().