glutGet (3) - Linux Manuals
glutGet: Allows you to query some general state/option variables.
NAME
glutGet - Allows you to query some general state/option variables.LIBRARY
OpenGLUT - stateSYNOPSIS
In openglut.h Ft int Fn glutGet GLenum eWhatPARAMETERS
Bf Em
Most of the above are very obvious, and so full documentation
is postponed for now.
This function is a bit messy, especially the WINCE part. Fix.
Lots of code uses return to hop out. Since it's such a sprawling function, it's easy to be in the middle and not be 100% sure if there's anything important at the end of the function, or if it is safe to just "drop out" of the current case and head for the bottom.
Causes crashes (assertion failure) if you call this before having called glutInit()---other than GLUT_INIT_STATE and GLUT_ELAPSED_TIME. Because various things can cause OpenGLUT to become deinitialized, we should probably either return default values of some kind or do minimal initialization if we are called without proper initialization.
DESCRIPTION
This function permits you to query for the current value
of many different OpenGLUT state variables. The current
list is:
Allows you to do something other than die if the
user closes one of your windows.
Allows you to specify context-sharing when you
open new windows.
Height in millimeters.
Width in millimeters.
System dependant.
TODO
Go back and flesh out the above list.