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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutUseLayer 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutUseLayer - changes the layer in use for the current window. 
  7. .SH SYNTAX
  8. .nf
  9. .LP
  10. void glutUseLayer(GLenum layer);
  11. .fi
  12. .SH ARGUMENTS
  13. .IP fIlayerfP 1i
  14. Either GLUT_NORMAL or GLUT_OVERLAY, selecting the normal
  15. plane or overlay respectively. 
  16. .SH DESCRIPTION
  17. glutUseLayer changes the per-window layer in use for the current
  18. window, selecting either the normal plane or overlay. The overlay should
  19. only be specified if an overlay exists, however windows without an
  20. overlay may still call glutUseLayer(GLUT_NORMAL). OpenGL
  21. commands for the window are directed to the current layer in use. 
  22. To query the layer in use for a window, call
  23. glutLayerGet(GLUT_LAYER_IN_USE). 
  24. .SH SEE ALSO
  25. glutEstablishOverlay, glutSetWindow
  26. .SH AUTHOR
  27. Mark J. Kilgard (mjk@nvidia.com)