Hi all
Suppose I have a GLAutoDrawable (drawable) and a GLEventListener(gllistener) attached to it.
Does the result of a call to a display method of the drawable, is the same with the following code:
drawable.getContext().makeCurrent();
gllistener.display(drawable);
Is this thread safe; What about if the drawable shares context with other drawables?
Thanks in advance