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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutCreateSubWindow 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutCreateSubWindow - creates a subwindow. 
  7. .SH SYNTAX
  8. .nf
  9. .LP
  10. int glutCreateSubWindow(int win,
  11. int x, int y, int width, int height);
  12. .fi
  13. .SH ARGUMENTS
  14. .IP fIwinfP 1i
  15. Identifier of the subwindow's parent window. 
  16. .IP fIxfP 1i
  17. Window X location in pixels relative to parent window's origin. 
  18. .IP fIyfP 1i
  19. Window Y location in pixels relative to parent window's origin. 
  20. .IP fIwidthfP 1i
  21. Width in pixels. 
  22. .IP fIheightfP 1i
  23. Height in pixels. 
  24. .SH DESCRIPTION
  25. glutCreateSubWindow creates a subwindow of the window identified
  26. by win of size width and height at location x and y within the current
  27. window. Implicitly, the current window is set to the newly created
  28. subwindow. 
  29. Each created window has a unique associated OpenGL context. State
  30. changes to a window's associated OpenGL context can be done
  31. immediately after the window is created. 
  32. The display state of a window is initially for the window to be shown.
  33. But the window's display state is not actually acted upon until
  34. glutMainLoop is entered. This means until glutMainLoop is called,
  35. rendering to a created window is ineffective. Subwindows can not be
  36. iconified. 
  37. Subwindows can be nested arbitrarily deep. 
  38. The value returned is a unique small integer identifier for the window.
  39. The range of allocated identifiers starts at one. 
  40. .SH SEE ALSO
  41. glutCreateWindow, glutDestroyWindow
  42. .SH AUTHOR
  43. Mark J. Kilgard (mjk@nvidia.com)