glutEntryFunc

sets the mouse enter/leave callback for the current window.

Signature

glutEntryFunc( )-> void
glutEntryFunc( function )
Specify handler for GLUT 'Entry' events
    def handler( (int) state ):
        return None

Parameters

VariablesDescription
func
The new entry callback function.

See Also

glutMotionFunc glutCreateWindow

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.

glutEntryFunc
Glinter Core.py Lines: 611