I am trying to use PyOpenGL with an EGL context on a linux system without X
server.
I create a context similar to
https://github.com/tensorflow/lucid/blob/master/lucid/misc/gl/glcontext.py#L79
Context seems fine, but I get errors when calling various OpenGL functions,
e.g.
*OpenGL.error.NullFunctionError: Attempt to call an undefined function
glTexStorage2D, check for bool(glTexStorage2D) before calling*
Any ideas what's the problem?
|