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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutReshapeWindow 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutReshapeWindow - requests a change to the size of the current window. 
  7. .SH SYNTAX
  8. .nf
  9. .LP
  10. void glutReshapeWindow(int width, int height);
  11. .fi
  12. .SH ARGUMENTS
  13. .IP fIwidthfP 1i
  14. New width of window in pixels. 
  15. .IP fIheightfP 1i
  16. New height of window in pixels. 
  17. .SH DESCRIPTION
  18. glutReshapeWindow requests a change in the size of the current
  19. window. The width and height parameters are size extents in pixels.
  20. The width and height must be positive values. 
  21. The requests by glutReshapeWindow are not processed immediately.
  22. The request is executed after returning to the main event loop. This
  23. allows multiple glutReshapeWindow, glutPositionWindow, and
  24. glutFullScreen requests to the same window to be coalesced. 
  25. In the case of top-level windows, a glutReshapeWindow call is
  26. considered only a request for sizing the window. The window system is
  27. free to apply its own policies to top-level window sizing. The intent is
  28. that top-level windows should be reshaped according
  29. glutReshapeWindow's parameters. Whether a reshape actually takes
  30. effect and, if so, the reshaped dimensions are reported to the program by
  31. a reshape callback. 
  32. glutReshapeWindow disables the full screen status of a window if
  33. previously enabled. 
  34. .SH SEE ALSO
  35. glutPositionWindow, glutReshapeFunc
  36. .SH AUTHOR
  37. Mark J. Kilgard (mjk@nvidia.com)