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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutPostRedisplay 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutPostRedisplay, glutPostWindowRedisplay - marks the current or specified window as needing to be
  7. redisplayed. 
  8. .SH SYNTAX
  9. .nf
  10. .LP
  11. void glutPostRedisplay(void);
  12. void glutPostWindowRedisplay(int win);
  13. .fi
  14. .SH DESCRIPTION
  15. glutPostRedisplay marks the normal plane of current window as needing to be redisplayed.
  16. glutPostWindowRedisplay works the specified window as needing to be redisplayed.
  17. After either call, the next iteration through glutMainLoop, the window's display
  18. callback will be called to redisplay the window's normal plane. Multiple
  19. calls to glutPostRedisplay before the next display callback
  20. opportunity generates only a single redisplay callback.
  21. glutPostRedisplay may be called within a window's display or
  22. overlay display callback to re-mark that window for redisplay. 
  23. Logically, normal plane damage notification for a window is treated as a
  24. glutPostRedisplay on the damaged window. Unlike damage
  25. reported by the window system, glutPostRedisplay will not set to
  26. true the normal plane's damaged status (returned by
  27. glutLayerGet(GLUT_NORMAL_DAMAGED). 
  28. If the window you want to post a redisplay on is not already current
  29. (and you do not require it to be immediately made current), using
  30. glutPostWindowRedisplay is more efficient that calling glutSetWindow to
  31. the desired window and then calling glutPostRedisplay.
  32. .SH SEE ALSO
  33. glutPostOverlayRedisplay, glutDisplayFunc
  34. .SH AUTHOR
  35. Mark J. Kilgard (mjk@nvidia.com)