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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutRemoveLayer 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutRemoveOverlay - removes the overlay (if one exists) from the current window. 
  7. .SH SYNTAX
  8. .nf
  9. .LP
  10. void glutRemoveOverlay(void);
  11. .fi
  12. .SH DESCRIPTION
  13. glutRemoveOverlay removes the overlay (if one exists). It is safe
  14. to call glutRemoveOverlay even if no overlay is currently
  15. established--it does nothing in this case. Implicitly, the window's
  16. layer in use changes to the normal plane immediately once the
  17. overlay is removed. 
  18. If the program intends to re-establish the overlay later, it is typically
  19. faster and less resource intensive to use glutHideOverlay and
  20. glutShowOverlay to simply change the display status of the
  21. overlay. 
  22. .SH SEE ALSO
  23. glutEstablishOverlay, glutDestroyWindow
  24. .SH AUTHOR
  25. Mark J. Kilgard (mjk@nvidia.com)