gluGetString

return a string describing the GLU version or GLU extensions

Signature

gluGetString( GLenum ( name ) )-> const GLubyte *
gluGetString( name ) -> <class 'ctypes.c_char_p'>
gluGetString( GLenum(name) ) -> POINTER(GLubyte)

Parameters

VariablesDescription
name
Specifies a symbolic constant, one of GLU_VERSION , or GLU_EXTENSIONS .

Sample Code References

The following code samples have been found which appear to reference the functions described here. Take care that the code may be old, broken or not even use PyOpenGL.

gluGetString
OpenGLContext tests/glugetstring.py Lines: 10, 11
OpenGLContext OpenGLContext/extensionmanager.py Lines: 3, 94