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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutFullScreen 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutFullScreen - requests that the current window be made full screen. 
  7. .SH SYNTAX
  8. .nf
  9. .LP
  10. void glutFullScreen(void);
  11. .fi
  12. .SH DESCRIPTION
  13. glutFullScreen requests that the current window be made full screen.
  14. The exact semantics of what full screen means may vary by window
  15. system. The intent is to make the window as large as possible and disable
  16. any window decorations or borders added the window system. The
  17. window width and height are not guaranteed to be the same as the screen
  18. width and height, but that is the intent of making a window full screen. 
  19. glutFullScreen is defined to work only on top-level windows. 
  20. The glutFullScreen requests are not processed immediately. The
  21. request is executed after returning to the main event loop. This allows
  22. multiple glutReshapeWindow, glutPositionWindow, and
  23. glutFullScreen requests to the same window to be coalesced. 
  24. Subsequent glutReshapeWindow and glutPositionWindow
  25. requests on the window will disable the full screen status of the window.
  26. .SH X IMPLEMENTATION NOTES
  27. In the X implementation of GLUT, full screen is implemented by sizing
  28. and positioning the window to cover the entire screen and posting the  
  29. _MOTIF_WM_HINTS property on the window requesting absolutely no
  30. decorations. Non-Motif window managers may not respond to
  31. _MOTIF_WM_HINTS. 
  32. .SH SEE ALSO
  33. glutReshapeWindow, glutPositionWindow
  34. .SH AUTHOR
  35. Mark J. Kilgard (mjk@nvidia.com)