ADC Home > Reference Library > Reference > Mac OS X > Mac OS X Man Pages
|
This document is a Mac OS X manual page. Manual pages are a command-line technology for providing documentation. You can view these manual pages locally using the man(1) command. These manual pages come from many different sources, and thus, have a variety of writing styles. For more information about the manual page format, see the manual page for manpages(5). |
glutEntryFunc(3GLUT) GLUT glutEntryFunc(3GLUT) NAME glutEntryFunc - sets the mouse enter/leave callback for the current window. SYNTAX void glutEntryFunc(void (*func)(int state)); ARGUMENTS func The new entry callback function. DESCRIPTION glutEntryFunc sets the mouse enter/leave callback for the current window. The state callback parame-ter parameter ter is either GLUT_LEFT or GLUT_ENTERED depending on if the mouse pointer has last left or entered the window. Passing NULL to glutEntryFunc disables the generation of the mouse enter/leave callback. Some window systems may not generate accurate enter/leave callbacks. X IMPLEMENTATION NOTES An X implementation of GLUT should generate accurate enter/leave callbacks. SEE ALSO glutMotionFunc(3G), glutCreateWindow(3G) AUTHOR Mark J. Kilgard (mjk@nvidia.com) GLUT 3.7 glutEntryFunc(3GLUT) |
|