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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutInit 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutInit - initialize the GLUT library. 
  7. .SH SYNTAX
  8. .nf
  9. .LP
  10. void glutInit(int *argcp, char **argv);
  11. .fi
  12. .SH ARGUMENTS
  13. .IP fIargcpfP 1i
  14. A pointer to the program's unmodified argc variable from main.
  15. Upon return, the value pointed to by argcp will be updated,
  16. because glutInit extracts any command line options intended
  17. for the GLUT library. 
  18. .IP fIargvfP 1i
  19. The program's unmodified argv variable from main. Like
  20. argcp, the data for argv will be updated because glutInit
  21. extracts any command line options understood by the GLUT
  22. library. 
  23. .SH DESCRIPTION
  24. glutInit will initialize the GLUT library and negotiate a session with
  25. the window system. During this process, glutInit may cause the
  26. termination of the GLUT program with an error message to the user if
  27. GLUT cannot be properly initialized.  Examples of this situation include
  28. the failure to connect to the window system, the lack of window system
  29. support for OpenGL, and invalid command line options. 
  30. .LP
  31. glutInit also processes command line options, but the specific options
  32. parse are window system dependent. 
  33. .SH X IMPLEMENTATION NOTES
  34. The X Window System specific options parsed by glutInit are as
  35. follows:
  36. .TP 8
  37. .B -display fIDISPLAYfP
  38. Specify the X server to connect to. If not specified, the value of the
  39. DISPLAY environment variable is used. 
  40. .TP 8
  41. .B -geometry fIWxH+X+YfP
  42. Determines where window's should be created on the screen. The
  43. parameter following -geometry should be formatted as a
  44. standard X geometry specification.  The effect of using this option
  45. is to change the GLUT initial size and initial position the same as
  46. if glutInitWindowSize or glutInitWindowPosition were
  47. called directly. 
  48. .TP 8
  49. .B -iconic
  50. Requests all top-level windows be created in an iconic state. 
  51. .TP 8
  52. .B -indirect
  53. Force the use of indirect OpenGL rendering contexts. 
  54. .TP 8
  55. .B -direct
  56. Force the use of direct OpenGL rendering contexts (not all GLX
  57. implementations support direct rendering contexts). A fatal error
  58. is generated if direct rendering is not supported by the OpenGL
  59. implementation. 
  60. If neither -indirect or -direct are used to force a particular
  61. behavior, GLUT will attempt to use direct rendering if possible
  62. and otherwise fallback to indirect rendering. 
  63. .TP 8
  64. .B -gldebug
  65. After processing callbacks and/or events, check if there are any
  66. OpenGL errors by calling glGetError.  If an error is reported,
  67. print out a warning by looking up the error code with
  68. gluErrorString.  Using this option is helpful in detecting  
  69. OpenGL run-time errors. 
  70. .TP 8
  71. .B -sync
  72. Enable synchronous X protocol transactions.  This option makes it
  73. easier to track down potential   X protocol errors. 
  74. .SH SEE ALSO
  75. glutCreateWindow,
  76. glutInitWindowPosition,
  77. glutInitWindowSize,
  78. glutMainLoop
  79. .SH AUTHOR
  80. Mark J. Kilgard (mjk@nvidia.com)