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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutGet 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutGet - retrieves simple GLUT state represented by integers. 
  7. .SH SYNTAX
  8. .nf
  9. .LP
  10. int glutGet(GLenum state);
  11. .fi
  12. .SH ARGUMENTS
  13. .IP fIstatefP 1i
  14. Name of state to retrieve. 
  15. .TP 8
  16. .B GLUT_WINDOW_X 
  17. X location in pixels (relative to the screen origin) of the current
  18. window. 
  19. .TP 8
  20. .B GLUT_WINDOW_Y 
  21. Y location in pixels (relative to the screen origin) of the current
  22. window. 
  23. .TP 8
  24. .B GLUT_WINDOW_WIDTH 
  25. Width in pixels of the current window. 
  26. .TP 8
  27. .B GLUT_WINDOW_HEIGHT 
  28. Height in pixels of the current window. 
  29. .TP 8
  30. .B GLUT_WINDOW_BUFFER_SIZE 
  31. Total number of bits for current layer of current window's color buffer. For an
  32. RGBA window, this is the sum of GLUT_WINDOW_RED_SIZE,
  33. GLUT_WINDOW_GREEN_SIZE, GLUT_WINDOW_BLUE_SIZE, and
  34. GLUT_WINDOW_ALPHA_SIZE. For color index windows, this is
  35. the size of the color indexes. 
  36. .TP 8
  37. .B GLUT_WINDOW_STENCIL_SIZE 
  38. Number of bits in the current layer of current window's stencil buffer. 
  39. .TP 8
  40. .B GLUT_WINDOW_DEPTH_SIZE 
  41. Number of bits in the current layer of current window's depth buffer. 
  42. .TP 8
  43. .B GLUT_WINDOW_RED_SIZE 
  44. Number of bits of red stored the current layer of current window's color buffer.
  45. Zero if the current layer of the current window is color index. 
  46. .TP 8
  47. .B GLUT_WINDOW_GREEN_SIZE 
  48. Number of bits of green stored the current layer of current window's color buffer.
  49. Zero if the current layer of the current window is color index. 
  50. .TP 8
  51. .B GLUT_WINDOW_BLUE_SIZE 
  52. Number of bits of blue stored the current layer of current window's color buffer.
  53. Zero if the current layer of the current window is color index. 
  54. .TP 8
  55. .B GLUT_WINDOW_ALPHA_SIZE 
  56. Number of bits of alpha stored the current layer of current window's color buffer.
  57. Zero if the current layer of the current window is color index. 
  58. .TP 8
  59. .B GLUT_WINDOW_ACCUM_RED_SIZE 
  60. Number of bits of red stored in the current layer of current window's accumulation
  61. buffer. Zero if the current layer of the current window is color index. 
  62. .TP 8
  63. .B GLUT_WINDOW_ACCUM_GREEN_SIZE 
  64. Number of bits of green stored in the current layer of current window's
  65. accumulation buffer. Zero if the current layer of the current window is color index. 
  66. .TP 8
  67. .B GLUT_WINDOW_ACCUM_BLUE_SIZE 
  68. Number of bits of blue stored in the current layer of current window's
  69. accumulation buffer. Zero if the current layer of the current window is color index. 
  70. .TP 8
  71. .B GLUT_WINDOW_ACCUM_ALPHA_SIZE 
  72. Number of bits of alpha stored in the current layer of current window's
  73. accumulation buffer. Zero if the current layer of the current window is color index. 
  74. .TP 8
  75. .B GLUT_WINDOW_DOUBLEBUFFER 
  76. One if the current layer of the current window is double buffered, zero otherwise. 
  77. .TP 8
  78. .B GLUT_WINDOW_RGBA 
  79. One if the current layer of the current window is RGBA mode, zero otherwise (i.e.,
  80. color index). 
  81. .TP 8
  82. .B GLUT_WINDOW_PARENT 
  83. The window number of the current window's parent; zero if the
  84. window is a top-level window. 
  85. .TP 8
  86. .B GLUT_WINDOW_NUM_CHILDREN 
  87. The number of subwindows the current window has (not counting
  88. children of children). 
  89. .TP 8
  90. .B GLUT_WINDOW_COLORMAP_SIZE 
  91. Size of current layer of current window's color index colormap; zero for RGBA
  92. color model layers. 
  93. .TP 8
  94. .B GLUT_WINDOW_NUM_SAMPLES 
  95. Number of samples for multisampling for the current layer of the current window. 
  96. .TP 8
  97. .B GLUT_WINDOW_STEREO 
  98. One if the current layer of the current window is stereo, zero otherwise. 
  99. .TP 8
  100. .B GLUT_WINDOW_CURSOR 
  101. Current cursor for the current window. 
  102. .TP 8
  103. .B GLUT_SCREEN_WIDTH 
  104. Width of the screen in pixels. Zero indicates the width is unknown
  105. or not available. 
  106. .TP 8
  107. .B GLUT_SCREEN_HEIGHT 
  108. Height of the screen in pixels. Zero indicates the height is
  109. unknown or not available. 
  110. .TP 8
  111. .B GLUT_SCREEN_WIDTH_MM 
  112. Width of the screen in millimeters. Zero indicates the width is
  113. unknown or not available. 
  114. .TP 8
  115. .B GLUT_SCREEN_HEIGHT_MM 
  116. Height of the screen in millimeters. Zero indicates the height is
  117. unknown or not available. 
  118. .TP 8
  119. .B GLUT_MENU_NUM_ITEMS 
  120. Number of menu items in the current menu. 
  121. .TP 8
  122. .B GLUT_DISPLAY_MODE_POSSIBLE 
  123. Whether the current display mode is supported or not. 
  124. .TP 8
  125. .B GLUT_INIT_DISPLAY_MODE 
  126. The initial display mode bit mask. 
  127. .TP 8
  128. .B GLUT_INIT_WINDOW_X 
  129. The X value of the initial window position. 
  130. .TP 8
  131. .B GLUT_INIT_WINDOW_Y 
  132. The Y value of the initial window position. 
  133. .TP 8
  134. .B GLUT_INIT_WINDOW_WIDTH 
  135. The width value of the initial window size. 
  136. .TP 8
  137. .B GLUT_INIT_WINDOW_HEIGHT 
  138. The height value of the initial window size. 
  139. .TP 8
  140. .B GLUT_ELAPSED_TIME 
  141. Number of milliseconds since glutInit called (or first call to
  142. glutGet(GLUT_ELAPSED_TIME)). 
  143. .TP 8
  144. .B GLUT_WINDOW_FORMAT_ID
  145. The window system dependent format ID for the current layer of the
  146. current window.  On X11 GLUT implementations, this is the X visual ID.
  147. On Win32 GLUT implementations, this is the Win32 Pixel Format
  148. Descriptor number.  This value is returned for debugging, benchmarking,
  149. and testing ease.
  150. .SH DESCRIPTION
  151. glutGet retrieves simple GLUT state represented by integers. The
  152. state parameter determines what type of state to return.  Where appropriate, window
  153. capability state is returned for the layer in use. GLUT state names
  154. beginning with GLUT_WINDOW_ return state for the current window.
  155. GLUT state names beginning with GLUT_MENU_ return state for the
  156. current menu. Other GLUT state names return global state. Requesting
  157. state for an invalid GLUT state name returns negative one. 
  158. .SH SEE ALSO
  159. glutDeviceGet, glutLayerGet, glutGetColor, glutGetWindow, glutGetMenu, glutGetModifiers, glutExtensionSupported
  160. .SH AUTHOR
  161. Mark J. Kilgard (mjk@nvidia.com)