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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutSwapBuffers 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutSwapBuffers - swaps the buffers of the current window if double buffered. 
  7. .SH SYNTAX
  8. .nf
  9. .LP
  10. void glutSwapBuffers(void);
  11. .fi
  12. .SH DESCRIPTION
  13. Performs a buffer swap on the layer in use for the current window.
  14. Specifically, glutSwapBuffers promotes the contents of the back
  15. buffer of the layer in use of the current window to become the contents
  16. of the front buffer. The contents of the back buffer then become
  17. undefined. The update typically takes place during the vertical retrace of
  18. the monitor, rather than immediately after glutSwapBuffers is called.
  19. An implicit glFlush is done by glutSwapBuffers before it returns.
  20. Subsequent OpenGL commands can be issued immediately after calling
  21. glutSwapBuffers, but are not executed until the buffer exchange is
  22. completed. 
  23. If the layer in use is not double buffered, glutSwapBuffers has no
  24. effect. 
  25. .SH SEE ALSO
  26. glutPostRedisplay, glutDisplayFunc
  27. .SH AUTHOR
  28. Mark J. Kilgard (mjk@nvidia.com)