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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutCreateWindow 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutCreateWindow - creates a top-level window. 
  7. .SH SYNTAX
  8. .nf
  9. .LP
  10. int glutCreateWindow(char *name);
  11. .fi
  12. .SH ARGUMENTS
  13. .IP fInamefP 1i
  14. ASCII character string for use as window name. 
  15. .SH DESCRIPTION
  16. glutCreateWindow creates a top-level window. The
  17. name will be provided to the window system as the window's name. The
  18. intent is that the window system will label the window with the name. 
  19. Implicitly, the current window is set to the newly created window. 
  20. Each created window has a unique associated OpenGL context. State
  21. changes to a window's associated OpenGL context can be done
  22. immediately after the window is created. 
  23. The display state of a window is initially for the window to be shown.
  24. But the window's display state is not actually acted upon until
  25. glutMainLoop is entered. This means until glutMainLoop is called,
  26. rendering to a created window is ineffective because the window can not
  27. yet be displayed. 
  28. The value returned is a unique small integer identifier for the window.
  29. The range of allocated identifiers starts at one. This window identifier
  30. can be used when calling glutSetWindow. 
  31. .SH X IMPLEMENTATION NOTES
  32. The proper X Inter-Client Communication Conventions Manual
  33. (ICCCM) top-level properties are established. The WM_COMMAND
  34. property that lists the command line used to invoke the GLUT program
  35. is only established for the first window created. 
  36. .SH SEE ALSO
  37. glutCreateSubWindow, glutCreateMenu, glutDestroyWindow
  38. .SH AUTHOR
  39. Mark J. Kilgard (mjk@nvidia.com)