glutEntryFunc.man
上传用户:xk288cn
上传日期:2007-05-28
资源大小:4876k
文件大小:1k
源码类别:

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutEntryFunc 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutEntryFunc - sets the mouse enter/leave callback for the current window. 
  7. .SH SYNTAX
  8. .nf
  9. .LP
  10. void glutEntryFunc(void (*func)(int state));
  11. .fi
  12. .SH ARGUMENTS
  13. .IP fIfuncfP 1i
  14. The new entry callback function. 
  15. .SH DESCRIPTION
  16. glutEntryFunc sets the mouse enter/leave callback for the current
  17. window. The state callback parameter is either GLUT_LEFT or
  18. GLUT_ENTERED depending on if the mouse pointer has last left or entered
  19. the window. 
  20. Passing NULL to glutEntryFunc disables the generation of the mouse
  21. enter/leave callback. 
  22. Some window systems may not generate accurate enter/leave callbacks. 
  23. X IMPLEMENTATION NOTES
  24. An X implementation of GLUT should generate accurate enter/leave
  25. callbacks.
  26. .SH SEE ALSO
  27. glutMotionFunc, glutCreateWindow
  28. .SH AUTHOR
  29. Mark J. Kilgard (mjk@nvidia.com)