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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1998.
  3. ."
  4. .TH glutForceJoystickFunc 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutForceJoystickFunc - forces current window's joystick callback to be called.
  7. .SH SYNTAX
  8. .nf
  9. .LP
  10. void glutForceJoystickFunc(void);
  11. .fi
  12. .SH DESCRIPTION
  13. glutForceJoystickFunc forces the current window's joystick callback to be
  14. called, reporting the latest joystick state.
  15. The joystick callback is called either due to polling of the joystick
  16. at the uniform timer interval set by glutJoystickFunc's
  17. pollInterval (specified in milliseconds) or 
  18. in response to calling glutForceJoystickFunc.  If the pollInterval is
  19. non-positive, no joystick polling is performed and the GLUT application
  20. must frequently (usually from an idle callback) call glutForceJoystickFunc.
  21. The joystick callback will be called once (if one exists)
  22. for each time glutForceJoystickFunc is called.  The callback is called
  23. from glutJoystickFunc.  That is, when glutJoystickFunc returns, the
  24. callback will have already happened.
  25. .SH GLUT IMPLEMENTATION NOTES FOR X11
  26. The GLUT 3.7 implementation of GLUT for X11 supports the joystick API, but
  27. not actual joystick input.  A future implementation of GLUT for X11 may
  28. add joystick support.
  29. .SH GLUT IMPLEMENTATION NOTES FOR WIN32
  30. The GLUT 3.7 implementation of GLUT for Win32 supports the joystick API
  31. and joystick input, but does so through the dated joySetCapture and
  32. joyGetPosEx Win32 Multimedia API.  The GLUT 3.7 joystick support for
  33. Win32 has all the limitations of the Win32 Multimedia API joystick support.
  34. A future implementation of GLUT for Win32 may use DirectInput.
  35. .SH SEE ALSO
  36. glutJoystickFunc
  37. .SH AUTHOR
  38. Mark J. Kilgard (mjk@nvidia.com)