Login  Register

Re: how to use GLContext.getCurrentGL() ???

Posted by imakerobots on Nov 27, 2023; 7:57pm
URL: https://forum.jogamp.org/how-to-use-GLContext-getCurrentGL-tp4043168p4043172.html

I have three choices:
- on display() store the context in a global (poor design)
- on display() call all my other methods and have them call GLContext.getCurrentGL().  (basically the same thing)
- on display() call all my other methods and pass them the gl context.  (more stack work)

Personally I go with method 3.