ruby-glfw 0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (206) hide show
  1. data/README +1 -0
  2. data/README.API +73 -0
  3. data/Rakefile +120 -0
  4. data/examples/boing.rb +519 -0
  5. data/examples/gears.rb +327 -0
  6. data/examples/keytest.rb +117 -0
  7. data/examples/listmodes.rb +20 -0
  8. data/examples/mipmaps.rb +104 -0
  9. data/examples/mipmaps.tga +0 -0
  10. data/examples/particles.rb +837 -0
  11. data/examples/pong3d.rb +741 -0
  12. data/examples/pong3d_field.tga +0 -0
  13. data/examples/pong3d_instr.tga +0 -0
  14. data/examples/pong3d_menu.tga +0 -0
  15. data/examples/pong3d_title.tga +0 -0
  16. data/examples/pong3d_winner1.tga +0 -0
  17. data/examples/pong3d_winner2.tga +0 -0
  18. data/examples/splitview.rb +432 -0
  19. data/examples/triangle.rb +89 -0
  20. data/examples/wave.rb +294 -0
  21. data/ext/glfw/glfw.c +1094 -0
  22. data/ext/glfw/mkrf_conf.rb +70 -0
  23. data/glfw-src/Makefile +220 -0
  24. data/glfw-src/compile.ami +61 -0
  25. data/glfw-src/compile.bat +217 -0
  26. data/glfw-src/compile.sh +607 -0
  27. data/glfw-src/docs/Makefile +57 -0
  28. data/glfw-src/docs/Reference.pdf +0 -0
  29. data/glfw-src/docs/UsersGuide.pdf +0 -0
  30. data/glfw-src/docs/cleanup.bat +22 -0
  31. data/glfw-src/docs/glfwdoc.sty +80 -0
  32. data/glfw-src/docs/glfwrm.tex +3034 -0
  33. data/glfw-src/docs/glfwug.tex +2024 -0
  34. data/glfw-src/docs/readme.txt +80 -0
  35. data/glfw-src/examples/Makefile.amigaos.gcc +70 -0
  36. data/glfw-src/examples/Makefile.amigaos.vbcc +70 -0
  37. data/glfw-src/examples/Makefile.dos.djgpp +71 -0
  38. data/glfw-src/examples/Makefile.macosx.gcc +96 -0
  39. data/glfw-src/examples/Makefile.win32.bcc +75 -0
  40. data/glfw-src/examples/Makefile.win32.cross-mgw +79 -0
  41. data/glfw-src/examples/Makefile.win32.cygwin +79 -0
  42. data/glfw-src/examples/Makefile.win32.lcc +74 -0
  43. data/glfw-src/examples/Makefile.win32.mgw +75 -0
  44. data/glfw-src/examples/Makefile.win32.msvc +74 -0
  45. data/glfw-src/examples/Makefile.win32.ow +74 -0
  46. data/glfw-src/examples/Makefile.win32.pellesc +74 -0
  47. data/glfw-src/examples/Makefile.x11.in +54 -0
  48. data/glfw-src/examples/boing.c +606 -0
  49. data/glfw-src/examples/bundle.sh +46 -0
  50. data/glfw-src/examples/gears.c +382 -0
  51. data/glfw-src/examples/keytest.c +264 -0
  52. data/glfw-src/examples/listmodes.c +48 -0
  53. data/glfw-src/examples/mipmaps.c +126 -0
  54. data/glfw-src/examples/mipmaps.tga +0 -0
  55. data/glfw-src/examples/mtbench.c +301 -0
  56. data/glfw-src/examples/mthello.c +48 -0
  57. data/glfw-src/examples/particles.c +1148 -0
  58. data/glfw-src/examples/pong3d.c +839 -0
  59. data/glfw-src/examples/pong3d_field.tga +0 -0
  60. data/glfw-src/examples/pong3d_instr.tga +0 -0
  61. data/glfw-src/examples/pong3d_menu.tga +0 -0
  62. data/glfw-src/examples/pong3d_title.tga +0 -0
  63. data/glfw-src/examples/pong3d_winner1.tga +0 -0
  64. data/glfw-src/examples/pong3d_winner2.tga +0 -0
  65. data/glfw-src/examples/splitview.c +506 -0
  66. data/glfw-src/examples/triangle.c +108 -0
  67. data/glfw-src/examples/wave.c +397 -0
  68. data/glfw-src/images/opengl.gif +0 -0
  69. data/glfw-src/images/osicert.gif +0 -0
  70. data/glfw-src/include/GL/glfw.h +486 -0
  71. data/glfw-src/lib/amigaos/Makefile.amigaos.gcc +128 -0
  72. data/glfw-src/lib/amigaos/Makefile.amigaos.vbcc +128 -0
  73. data/glfw-src/lib/amigaos/SDI_compiler.h +94 -0
  74. data/glfw-src/lib/amigaos/amigaos_enable.c +51 -0
  75. data/glfw-src/lib/amigaos/amigaos_fullscreen.c +319 -0
  76. data/glfw-src/lib/amigaos/amigaos_glext.c +61 -0
  77. data/glfw-src/lib/amigaos/amigaos_init.c +284 -0
  78. data/glfw-src/lib/amigaos/amigaos_joystick.c +359 -0
  79. data/glfw-src/lib/amigaos/amigaos_thread.c +494 -0
  80. data/glfw-src/lib/amigaos/amigaos_time.c +206 -0
  81. data/glfw-src/lib/amigaos/amigaos_window.c +830 -0
  82. data/glfw-src/lib/amigaos/platform.h +337 -0
  83. data/glfw-src/lib/dos/Makefile.dos.djgpp +146 -0
  84. data/glfw-src/lib/dos/dos_enable.c +51 -0
  85. data/glfw-src/lib/dos/dos_events.c +173 -0
  86. data/glfw-src/lib/dos/dos_fullscreen.c +101 -0
  87. data/glfw-src/lib/dos/dos_glext.c +59 -0
  88. data/glfw-src/lib/dos/dos_init.c +105 -0
  89. data/glfw-src/lib/dos/dos_irq.s +246 -0
  90. data/glfw-src/lib/dos/dos_joystick.c +94 -0
  91. data/glfw-src/lib/dos/dos_keyboard.c +694 -0
  92. data/glfw-src/lib/dos/dos_mouse.c +337 -0
  93. data/glfw-src/lib/dos/dos_thread.c +267 -0
  94. data/glfw-src/lib/dos/dos_time.c +309 -0
  95. data/glfw-src/lib/dos/dos_window.c +563 -0
  96. data/glfw-src/lib/dos/platform.h +341 -0
  97. data/glfw-src/lib/enable.c +295 -0
  98. data/glfw-src/lib/fullscreen.c +95 -0
  99. data/glfw-src/lib/glext.c +201 -0
  100. data/glfw-src/lib/image.c +629 -0
  101. data/glfw-src/lib/init.c +108 -0
  102. data/glfw-src/lib/input.c +280 -0
  103. data/glfw-src/lib/internal.h +210 -0
  104. data/glfw-src/lib/joystick.c +101 -0
  105. data/glfw-src/lib/macosx/Makefile.macosx.gcc +172 -0
  106. data/glfw-src/lib/macosx/Makefile.macosx.gcc.universal +166 -0
  107. data/glfw-src/lib/macosx/libglfw.pc.in +11 -0
  108. data/glfw-src/lib/macosx/macosx_enable.c +42 -0
  109. data/glfw-src/lib/macosx/macosx_fullscreen.c +126 -0
  110. data/glfw-src/lib/macosx/macosx_glext.c +52 -0
  111. data/glfw-src/lib/macosx/macosx_init.c +194 -0
  112. data/glfw-src/lib/macosx/macosx_joystick.c +50 -0
  113. data/glfw-src/lib/macosx/macosx_thread.c +414 -0
  114. data/glfw-src/lib/macosx/macosx_time.c +112 -0
  115. data/glfw-src/lib/macosx/macosx_window.c +1279 -0
  116. data/glfw-src/lib/macosx/platform.h +349 -0
  117. data/glfw-src/lib/stream.c +194 -0
  118. data/glfw-src/lib/tga.c +405 -0
  119. data/glfw-src/lib/thread.c +340 -0
  120. data/glfw-src/lib/time.c +83 -0
  121. data/glfw-src/lib/win32/Makefile.win32.bcc +265 -0
  122. data/glfw-src/lib/win32/Makefile.win32.cross-mgw +274 -0
  123. data/glfw-src/lib/win32/Makefile.win32.cygwin +279 -0
  124. data/glfw-src/lib/win32/Makefile.win32.lcc +246 -0
  125. data/glfw-src/lib/win32/Makefile.win32.mgw +243 -0
  126. data/glfw-src/lib/win32/Makefile.win32.msvc +242 -0
  127. data/glfw-src/lib/win32/Makefile.win32.ow +242 -0
  128. data/glfw-src/lib/win32/Makefile.win32.pellesc +242 -0
  129. data/glfw-src/lib/win32/glfwdll.def +67 -0
  130. data/glfw-src/lib/win32/glfwdll_mgw1.def +67 -0
  131. data/glfw-src/lib/win32/glfwdll_mgw2.def +67 -0
  132. data/glfw-src/lib/win32/glfwdll_pellesc.def +65 -0
  133. data/glfw-src/lib/win32/libglfw.pc.in +11 -0
  134. data/glfw-src/lib/win32/platform.h +474 -0
  135. data/glfw-src/lib/win32/win32_dllmain.c +60 -0
  136. data/glfw-src/lib/win32/win32_enable.c +155 -0
  137. data/glfw-src/lib/win32/win32_fullscreen.c +317 -0
  138. data/glfw-src/lib/win32/win32_glext.c +85 -0
  139. data/glfw-src/lib/win32/win32_init.c +356 -0
  140. data/glfw-src/lib/win32/win32_joystick.c +234 -0
  141. data/glfw-src/lib/win32/win32_thread.c +511 -0
  142. data/glfw-src/lib/win32/win32_time.c +146 -0
  143. data/glfw-src/lib/win32/win32_window.c +1714 -0
  144. data/glfw-src/lib/window.c +727 -0
  145. data/glfw-src/lib/x11/Makefile.x11.in +243 -0
  146. data/glfw-src/lib/x11/platform.h +415 -0
  147. data/glfw-src/lib/x11/x11_enable.c +51 -0
  148. data/glfw-src/lib/x11/x11_fullscreen.c +524 -0
  149. data/glfw-src/lib/x11/x11_glext.c +69 -0
  150. data/glfw-src/lib/x11/x11_init.c +275 -0
  151. data/glfw-src/lib/x11/x11_joystick.c +371 -0
  152. data/glfw-src/lib/x11/x11_keysym2unicode.c +902 -0
  153. data/glfw-src/lib/x11/x11_thread.c +507 -0
  154. data/glfw-src/lib/x11/x11_time.c +154 -0
  155. data/glfw-src/lib/x11/x11_window.c +1746 -0
  156. data/glfw-src/license.txt +21 -0
  157. data/glfw-src/readme.html +927 -0
  158. data/glfw-src/support/d/examples/Makefile +59 -0
  159. data/glfw-src/support/d/examples/boing.d +610 -0
  160. data/glfw-src/support/d/examples/gears.d +379 -0
  161. data/glfw-src/support/d/examples/keytest.d +272 -0
  162. data/glfw-src/support/d/examples/listmodes.d +48 -0
  163. data/glfw-src/support/d/examples/mipmaps.d +126 -0
  164. data/glfw-src/support/d/examples/mtbench.d +304 -0
  165. data/glfw-src/support/d/examples/mthello.d +54 -0
  166. data/glfw-src/support/d/examples/particles.d +1150 -0
  167. data/glfw-src/support/d/examples/pong3d.d +840 -0
  168. data/glfw-src/support/d/examples/splitview.d +486 -0
  169. data/glfw-src/support/d/examples/triangle.d +108 -0
  170. data/glfw-src/support/d/examples/wave.d +400 -0
  171. data/glfw-src/support/d/imports/gl.d +4539 -0
  172. data/glfw-src/support/d/imports/glfw.d +349 -0
  173. data/glfw-src/support/d/imports/glu.d +328 -0
  174. data/glfw-src/support/d/lib/glfwdll.def +64 -0
  175. data/glfw-src/support/d/lib/glu32.def +56 -0
  176. data/glfw-src/support/d/lib/makefile +12 -0
  177. data/glfw-src/support/d/lib/opengl32.def +372 -0
  178. data/glfw-src/support/d/readme.html +83 -0
  179. data/glfw-src/support/delphi/examples/Triangle.dpr +105 -0
  180. data/glfw-src/support/delphi/lib/glfw.pas +437 -0
  181. data/glfw-src/support/delphi/readme.html +97 -0
  182. data/glfw-src/support/lua/examples/gears.lua +383 -0
  183. data/glfw-src/support/lua/examples/test1.lua +68 -0
  184. data/glfw-src/support/lua/readme.html +128 -0
  185. data/glfw-src/support/lua/src/luaglfw.c +1179 -0
  186. data/glfw-src/support/lua/src/luaglfw.h +48 -0
  187. data/glfw-src/support/lua/src/runlua.c +82 -0
  188. data/glfw-src/support/masm/examples/fpc.mac +47 -0
  189. data/glfw-src/support/masm/examples/makeit.bat +66 -0
  190. data/glfw-src/support/masm/examples/triangle.asm +232 -0
  191. data/glfw-src/support/masm/include/glfw.inc +326 -0
  192. data/glfw-src/support/masm/include/glu32.inc +55 -0
  193. data/glfw-src/support/masm/include/opengl32.inc +372 -0
  194. data/glfw-src/support/masm/lib/glfwdll.lib +0 -0
  195. data/glfw-src/support/masm/readme.html +170 -0
  196. data/glfw-src/support/msvc80/GLFW.sln +26 -0
  197. data/glfw-src/support/msvc80/GLFW.vcproj +257 -0
  198. data/glfw-src/support/msvc80/GLFWDLL.vcproj +287 -0
  199. data/glfw-src/support/visualbasic/bindings/glfw.bas +320 -0
  200. data/glfw-src/support/visualbasic/bindings/glu32.bas +284 -0
  201. data/glfw-src/support/visualbasic/bindings/opengl32.bas +999 -0
  202. data/glfw-src/support/visualbasic/examples/Triangle.bas +101 -0
  203. data/glfw-src/support/visualbasic/readme.html +164 -0
  204. data/website/index.html +84 -0
  205. data/website/style.css +110 -0
  206. metadata +301 -0
@@ -0,0 +1,64 @@
1
+ LIBRARY glfw
2
+ EXETYPE NT
3
+ SUBSYSTEM WINDOWS
4
+ EXPORTS
5
+ _glfwBroadcastCond@4 = glfwBroadcastCond
6
+ _glfwCloseWindow@0 = glfwCloseWindow
7
+ _glfwCreateCond@0 = glfwCreateCond
8
+ _glfwCreateMutex@0 = glfwCreateMutex
9
+ _glfwCreateThread@8 = glfwCreateThread
10
+ _glfwDestroyCond@4 = glfwDestroyCond
11
+ _glfwDestroyMutex@4 = glfwDestroyMutex
12
+ _glfwDestroyThread@4 = glfwDestroyThread
13
+ _glfwDisable@4 = glfwDisable
14
+ _glfwEnable@4 = glfwEnable
15
+ _glfwExtensionSupported@4 = glfwExtensionSupported
16
+ _glfwFreeImage@4 = glfwFreeImage
17
+ _glfwGetDesktopMode@4 = glfwGetDesktopMode
18
+ _glfwGetJoystickButtons@12 = glfwGetJoystickButtons
19
+ _glfwGetJoystickParam@8 = glfwGetJoystickParam
20
+ _glfwGetJoystickPos@12 = glfwGetJoystickPos
21
+ _glfwGetKey@4 = glfwGetKey
22
+ _glfwGetMouseButton@4 = glfwGetMouseButton
23
+ _glfwGetMousePos@8 = glfwGetMousePos
24
+ _glfwGetMouseWheel@0 = glfwGetMouseWheel
25
+ _glfwGetNumberOfProcessors@0 = glfwGetNumberOfProcessors
26
+ _glfwGetProcAddress@4 = glfwGetProcAddress
27
+ _glfwGetThreadID@0 = glfwGetThreadID
28
+ _glfwGetTime@0 = glfwGetTime
29
+ _glfwGetVersion@12 = glfwGetVersion
30
+ _glfwGetVideoModes@8 = glfwGetVideoModes
31
+ _glfwGetWindowParam@4 = glfwGetWindowParam
32
+ _glfwGetWindowSize@8 = glfwGetWindowSize
33
+ _glfwIconifyWindow@0 = glfwIconifyWindow
34
+ _glfwInit@0 = glfwInit
35
+ _glfwLoadTexture2D@8 = glfwLoadTexture2D
36
+ _glfwLockMutex@4 = glfwLockMutex
37
+ _glfwOpenWindow@36 = glfwOpenWindow
38
+ _glfwOpenWindowHint@8 = glfwOpenWindowHint
39
+ _glfwPollEvents@0 = glfwPollEvents
40
+ _glfwReadImage@12 = glfwReadImage
41
+ _glfwRestoreWindow@0 = glfwRestoreWindow
42
+ _glfwSetCharCallback@4 = glfwSetCharCallback
43
+ _glfwSetKeyCallback@4 = glfwSetKeyCallback
44
+ _glfwSetMouseButtonCallback@4 = glfwSetMouseButtonCallback
45
+ _glfwSetMousePos@8 = glfwSetMousePos
46
+ _glfwSetMousePosCallback@4 = glfwSetMousePosCallback
47
+ _glfwSetMouseWheel@4 = glfwSetMouseWheel
48
+ _glfwSetMouseWheelCallback@4 = glfwSetMouseWheelCallback
49
+ _glfwSetTime@8 = glfwSetTime
50
+ _glfwSetWindowCloseCallback@4 = glfwSetWindowCloseCallback
51
+ _glfwSetWindowRefreshCallback@4 = glfwSetWindowRefreshCallback
52
+ _glfwSetWindowPos@8 = glfwSetWindowPos
53
+ _glfwSetWindowSize@8 = glfwSetWindowSize
54
+ _glfwSetWindowSizeCallback@4 = glfwSetWindowSizeCallback
55
+ _glfwSetWindowTitle@4 = glfwSetWindowTitle
56
+ _glfwSignalCond@4 = glfwSignalCond
57
+ _glfwSleep@8 = glfwSleep
58
+ _glfwSwapBuffers@0 = glfwSwapBuffers
59
+ _glfwSwapInterval@4 = glfwSwapInterval
60
+ _glfwTerminate@0 = glfwTerminate
61
+ _glfwUnlockMutex@4 = glfwUnlockMutex
62
+ _glfwWaitCond@16 = glfwWaitCond
63
+ _glfwWaitEvents@0 = glfwWaitEvents
64
+ _glfwWaitThread@8 = glfwWaitThread
@@ -0,0 +1,56 @@
1
+ LIBRARY glu32
2
+ EXETYPE NT
3
+ SUBSYSTEM WINDOWS
4
+ EXPORTS
5
+ _gluBeginCurve@4 = gluBeginCurve
6
+ _gluBeginPolygon@4 = gluBeginPolygon
7
+ _gluBeginSurface@4 = gluBeginSurface
8
+ _gluBeginTrim@4 = gluBeginTrim
9
+ _gluBuild1DMipmaps@24 = gluBuild1DMipmaps
10
+ _gluBuild2DMipmaps@28 = gluBuild2DMipmaps
11
+ _gluCylinder@36 = gluCylinder
12
+ _gluDeleteNurbsRenderer@4 = gluDeleteNurbsRenderer
13
+ _gluDeleteQuadric@4 = gluDeleteQuadric
14
+ _gluDeleteTess@4 = gluDeleteTess
15
+ _gluDisk@28 = gluDisk
16
+ _gluEndCurve@4 = gluEndCurve
17
+ _gluEndPolygon@4 = gluEndPolygon
18
+ _gluEndSurface@4 = gluEndSurface
19
+ _gluEndTrim@4 = gluEndTrim
20
+ _gluErrorString@4 = gluErrorString
21
+ _gluErrorUnicodeStringEXT@4 = gluErrorUnicodeStringEXT
22
+ _gluGetNurbsProperty@12 = gluGetNurbsProperty
23
+ _gluGetString@4 = gluGetString
24
+ _gluGetTessProperty@12 = gluGetTessProperty
25
+ _gluLoadSamplingMatrices@16 = gluLoadSamplingMatrices
26
+ _gluLookAt@72 = gluLookAt
27
+ _gluNewNurbsRenderer@0 = gluNewNurbsRenderer
28
+ _gluNewQuadric@0 = gluNewQuadric
29
+ _gluNewTess@0 = gluNewTess
30
+ _gluNextContour@8 = gluNextContour
31
+ _gluNurbsCallback@12 = gluNurbsCallback
32
+ _gluNurbsCurve@28 = gluNurbsCurve
33
+ _gluNurbsProperty@12 = gluNurbsProperty
34
+ _gluNurbsSurface@44 = gluNurbsSurface
35
+ _gluOrtho2D@32 = gluOrtho2D
36
+ _gluPartialDisk@44 = gluPartialDisk
37
+ _gluPerspective@32 = gluPerspective
38
+ _gluPickMatrix@36 = gluPickMatrix
39
+ _gluProject@48 = gluProject
40
+ _gluPwlCurve@20 = gluPwlCurve
41
+ _gluQuadricCallback@12 = gluQuadricCallback
42
+ _gluQuadricDrawStyle@8 = gluQuadricDrawStyle
43
+ _gluQuadricNormals@8 = gluQuadricNormals
44
+ _gluQuadricOrientation@8 = gluQuadricOrientation
45
+ _gluQuadricTexture@8 = gluQuadricTexture
46
+ _gluScaleImage@36 = gluScaleImage
47
+ _gluSphere@20 = gluSphere
48
+ _gluTessBeginContour@4 = gluTessBeginContour
49
+ _gluTessBeginPolygon@8 = gluTessBeginPolygon
50
+ _gluTessCallback@12 = gluTessCallback
51
+ _gluTessEndContour@4 = gluTessEndContour
52
+ _gluTessEndPolygon@4 = gluTessEndPolygon
53
+ _gluTessNormal@28 = gluTessNormal
54
+ _gluTessProperty@16 = gluTessProperty
55
+ _gluTessVertex@12 = gluTessVertex
56
+ _gluUnProject@48 = gluUnProject
@@ -0,0 +1,12 @@
1
+ all: glfwdll.lib opengl32.lib glu32.lib
2
+
3
+ IFLAGS =
4
+
5
+ glfwdll.lib: glfwdll.def
6
+ implib $(IFLAGS) $@ glfwdll.def
7
+
8
+ opengl32.lib: opengl32.def
9
+ implib $(IFLAGS) $@ opengl32.def
10
+
11
+ glu32.lib: glu32.def
12
+ implib $(IFLAGS) $@ glu32.def
@@ -0,0 +1,372 @@
1
+ LIBRARY opengl32
2
+ EXETYPE NT
3
+ SUBSYSTEM WINDOWS
4
+ EXPORTS
5
+ _GlmfBeginGlsBlock@4 = GlmfBeginGlsBlock
6
+ _GlmfCloseMetaFile@4 = GlmfCloseMetaFile
7
+ _GlmfEndGlsBlock@4 = GlmfEndGlsBlock
8
+ _GlmfEndPlayback@4 = GlmfEndPlayback
9
+ _GlmfInitPlayback@12 = GlmfInitPlayback
10
+ _GlmfPlayGlsRecord@16 = GlmfPlayGlsRecord
11
+ _glAccum@8 = glAccum
12
+ _glAlphaFunc@8 = glAlphaFunc
13
+ _glAreTexturesResident@12 = glAreTexturesResident
14
+ _glArrayElement@4 = glArrayElement
15
+ _glBegin@4 = glBegin
16
+ _glBindTexture@8 = glBindTexture
17
+ _glBitmap@28 = glBitmap
18
+ _glBlendFunc@8 = glBlendFunc
19
+ _glCallList@4 = glCallList
20
+ _glCallLists@12 = glCallLists
21
+ _glClear@4 = glClear
22
+ _glClearAccum@16 = glClearAccum
23
+ _glClearColor@16 = glClearColor
24
+ _glClearDepth@8 = glClearDepth
25
+ _glClearIndex@4 = glClearIndex
26
+ _glClearStencil@4 = glClearStencil
27
+ _glClipPlane@8 = glClipPlane
28
+ _glColor3b@12 = glColor3b
29
+ _glColor3bv@4 = glColor3bv
30
+ _glColor3d@24 = glColor3d
31
+ _glColor3dv@4 = glColor3dv
32
+ _glColor3f@12 = glColor3f
33
+ _glColor3fv@4 = glColor3fv
34
+ _glColor3i@12 = glColor3i
35
+ _glColor3iv@4 = glColor3iv
36
+ _glColor3s@12 = glColor3s
37
+ _glColor3sv@4 = glColor3sv
38
+ _glColor3ub@12 = glColor3ub
39
+ _glColor3ubv@4 = glColor3ubv
40
+ _glColor3ui@12 = glColor3ui
41
+ _glColor3uiv@4 = glColor3uiv
42
+ _glColor3us@12 = glColor3us
43
+ _glColor3usv@4 = glColor3usv
44
+ _glColor4b@16 = glColor4b
45
+ _glColor4bv@4 = glColor4bv
46
+ _glColor4d@32 = glColor4d
47
+ _glColor4dv@4 = glColor4dv
48
+ _glColor4f@16 = glColor4f
49
+ _glColor4fv@4 = glColor4fv
50
+ _glColor4i@16 = glColor4i
51
+ _glColor4iv@4 = glColor4iv
52
+ _glColor4s@16 = glColor4s
53
+ _glColor4sv@4 = glColor4sv
54
+ _glColor4ub@16 = glColor4ub
55
+ _glColor4ubv@4 = glColor4ubv
56
+ _glColor4ui@16 = glColor4ui
57
+ _glColor4uiv@4 = glColor4uiv
58
+ _glColor4us@16 = glColor4us
59
+ _glColor4usv@4 = glColor4usv
60
+ _glColorMask@16 = glColorMask
61
+ _glColorMaterial@8 = glColorMaterial
62
+ _glColorPointer@16 = glColorPointer
63
+ _glCopyPixels@20 = glCopyPixels
64
+ _glCopyTexImage1D@28 = glCopyTexImage1D
65
+ _glCopyTexImage2D@32 = glCopyTexImage2D
66
+ _glCopyTexSubImage1D@24 = glCopyTexSubImage1D
67
+ _glCopyTexSubImage2D@32 = glCopyTexSubImage2D
68
+ _glCullFace@4 = glCullFace
69
+ _glDebugEntry@8 = glDebugEntry
70
+ _glDeleteLists@8 = glDeleteLists
71
+ _glDeleteTextures@8 = glDeleteTextures
72
+ _glDepthFunc@4 = glDepthFunc
73
+ _glDepthMask@4 = glDepthMask
74
+ _glDepthRange@16 = glDepthRange
75
+ _glDisable@4 = glDisable
76
+ _glDisableClientState@4 = glDisableClientState
77
+ _glDrawArrays@12 = glDrawArrays
78
+ _glDrawBuffer@4 = glDrawBuffer
79
+ _glDrawElements@16 = glDrawElements
80
+ _glDrawPixels@20 = glDrawPixels
81
+ _glEdgeFlag@4 = glEdgeFlag
82
+ _glEdgeFlagPointer@8 = glEdgeFlagPointer
83
+ _glEdgeFlagv@4 = glEdgeFlagv
84
+ _glEnable@4 = glEnable
85
+ _glEnableClientState@4 = glEnableClientState
86
+ _glEnd@0 = glEnd
87
+ _glEndList@0 = glEndList
88
+ _glEvalCoord1d@8 = glEvalCoord1d
89
+ _glEvalCoord1dv@4 = glEvalCoord1dv
90
+ _glEvalCoord1f@4 = glEvalCoord1f
91
+ _glEvalCoord1fv@4 = glEvalCoord1fv
92
+ _glEvalCoord2d@16 = glEvalCoord2d
93
+ _glEvalCoord2dv@4 = glEvalCoord2dv
94
+ _glEvalCoord2f@8 = glEvalCoord2f
95
+ _glEvalCoord2fv@4 = glEvalCoord2fv
96
+ _glEvalMesh1@12 = glEvalMesh1
97
+ _glEvalMesh2@20 = glEvalMesh2
98
+ _glEvalPoint1@4 = glEvalPoint1
99
+ _glEvalPoint2@8 = glEvalPoint2
100
+ _glFeedbackBuffer@12 = glFeedbackBuffer
101
+ _glFinish@0 = glFinish
102
+ _glFlush@0 = glFlush
103
+ _glFogf@8 = glFogf
104
+ _glFogfv@8 = glFogfv
105
+ _glFogi@8 = glFogi
106
+ _glFogiv@8 = glFogiv
107
+ _glFrontFace@4 = glFrontFace
108
+ _glFrustum@48 = glFrustum
109
+ _glGenLists@4 = glGenLists
110
+ _glGenTextures@8 = glGenTextures
111
+ _glGetBooleanv@8 = glGetBooleanv
112
+ _glGetClipPlane@8 = glGetClipPlane
113
+ _glGetDoublev@8 = glGetDoublev
114
+ _glGetError@0 = glGetError
115
+ _glGetFloatv@8 = glGetFloatv
116
+ _glGetIntegerv@8 = glGetIntegerv
117
+ _glGetLightfv@12 = glGetLightfv
118
+ _glGetLightiv@12 = glGetLightiv
119
+ _glGetMapdv@12 = glGetMapdv
120
+ _glGetMapfv@12 = glGetMapfv
121
+ _glGetMapiv@12 = glGetMapiv
122
+ _glGetMaterialfv@12 = glGetMaterialfv
123
+ _glGetMaterialiv@12 = glGetMaterialiv
124
+ _glGetPixelMapfv@8 = glGetPixelMapfv
125
+ _glGetPixelMapuiv@8 = glGetPixelMapuiv
126
+ _glGetPixelMapusv@8 = glGetPixelMapusv
127
+ _glGetPointerv@8 = glGetPointerv
128
+ _glGetPolygonStipple@4 = glGetPolygonStipple
129
+ _glGetString@4 = glGetString
130
+ _glGetTexEnvfv@12 = glGetTexEnvfv
131
+ _glGetTexEnviv@12 = glGetTexEnviv
132
+ _glGetTexGendv@12 = glGetTexGendv
133
+ _glGetTexGenfv@12 = glGetTexGenfv
134
+ _glGetTexGeniv@12 = glGetTexGeniv
135
+ _glGetTexImage@20 = glGetTexImage
136
+ _glGetTexLevelParameterfv@16 = glGetTexLevelParameterfv
137
+ _glGetTexLevelParameteriv@16 = glGetTexLevelParameteriv
138
+ _glGetTexParameterfv@12 = glGetTexParameterfv
139
+ _glGetTexParameteriv@12 = glGetTexParameteriv
140
+ _glHint@8 = glHint
141
+ _glIndexMask@4 = glIndexMask
142
+ _glIndexPointer@12 = glIndexPointer
143
+ _glIndexd@8 = glIndexd
144
+ _glIndexdv@4 = glIndexdv
145
+ _glIndexf@4 = glIndexf
146
+ _glIndexfv@4 = glIndexfv
147
+ _glIndexi@4 = glIndexi
148
+ _glIndexiv@4 = glIndexiv
149
+ _glIndexs@4 = glIndexs
150
+ _glIndexsv@4 = glIndexsv
151
+ _glIndexub@4 = glIndexub
152
+ _glIndexubv@4 = glIndexubv
153
+ _glInitNames@0 = glInitNames
154
+ _glInterleavedArrays@12 = glInterleavedArrays
155
+ _glIsEnabled@4 = glIsEnabled
156
+ _glIsList@4 = glIsList
157
+ _glIsTexture@4 = glIsTexture
158
+ _glLightModelf@8 = glLightModelf
159
+ _glLightModelfv@8 = glLightModelfv
160
+ _glLightModeli@8 = glLightModeli
161
+ _glLightModeliv@8 = glLightModeliv
162
+ _glLightf@12 = glLightf
163
+ _glLightfv@12 = glLightfv
164
+ _glLighti@12 = glLighti
165
+ _glLightiv@12 = glLightiv
166
+ _glLineStipple@8 = glLineStipple
167
+ _glLineWidth@4 = glLineWidth
168
+ _glListBase@4 = glListBase
169
+ _glLoadIdentity@0 = glLoadIdentity
170
+ _glLoadMatrixd@4 = glLoadMatrixd
171
+ _glLoadMatrixf@4 = glLoadMatrixf
172
+ _glLoadName@4 = glLoadName
173
+ _glLogicOp@4 = glLogicOp
174
+ _glMap1d@32 = glMap1d
175
+ _glMap1f@24 = glMap1f
176
+ _glMap2d@56 = glMap2d
177
+ _glMap2f@40 = glMap2f
178
+ _glMapGrid1d@20 = glMapGrid1d
179
+ _glMapGrid1f@12 = glMapGrid1f
180
+ _glMapGrid2d@40 = glMapGrid2d
181
+ _glMapGrid2f@24 = glMapGrid2f
182
+ _glMaterialf@12 = glMaterialf
183
+ _glMaterialfv@12 = glMaterialfv
184
+ _glMateriali@12 = glMateriali
185
+ _glMaterialiv@12 = glMaterialiv
186
+ _glMatrixMode@4 = glMatrixMode
187
+ _glMultMatrixd@4 = glMultMatrixd
188
+ _glMultMatrixf@4 = glMultMatrixf
189
+ _glNewList@8 = glNewList
190
+ _glNormal3b@12 = glNormal3b
191
+ _glNormal3bv@4 = glNormal3bv
192
+ _glNormal3d@24 = glNormal3d
193
+ _glNormal3dv@4 = glNormal3dv
194
+ _glNormal3f@12 = glNormal3f
195
+ _glNormal3fv@4 = glNormal3fv
196
+ _glNormal3i@12 = glNormal3i
197
+ _glNormal3iv@4 = glNormal3iv
198
+ _glNormal3s@12 = glNormal3s
199
+ _glNormal3sv@4 = glNormal3sv
200
+ _glNormalPointer@12 = glNormalPointer
201
+ _glOrtho@48 = glOrtho
202
+ _glPassThrough@4 = glPassThrough
203
+ _glPixelMapfv@12 = glPixelMapfv
204
+ _glPixelMapuiv@12 = glPixelMapuiv
205
+ _glPixelMapusv@12 = glPixelMapusv
206
+ _glPixelStoref@8 = glPixelStoref
207
+ _glPixelStorei@8 = glPixelStorei
208
+ _glPixelTransferf@8 = glPixelTransferf
209
+ _glPixelTransferi@8 = glPixelTransferi
210
+ _glPixelZoom@8 = glPixelZoom
211
+ _glPointSize@4 = glPointSize
212
+ _glPolygonMode@8 = glPolygonMode
213
+ _glPolygonOffset@8 = glPolygonOffset
214
+ _glPolygonStipple@4 = glPolygonStipple
215
+ _glPopAttrib@0 = glPopAttrib
216
+ _glPopClientAttrib@0 = glPopClientAttrib
217
+ _glPopMatrix@0 = glPopMatrix
218
+ _glPopName@0 = glPopName
219
+ _glPrioritizeTextures@12 = glPrioritizeTextures
220
+ _glPushAttrib@4 = glPushAttrib
221
+ _glPushClientAttrib@4 = glPushClientAttrib
222
+ _glPushMatrix@0 = glPushMatrix
223
+ _glPushName@4 = glPushName
224
+ _glRasterPos2d@16 = glRasterPos2d
225
+ _glRasterPos2dv@4 = glRasterPos2dv
226
+ _glRasterPos2f@8 = glRasterPos2f
227
+ _glRasterPos2fv@4 = glRasterPos2fv
228
+ _glRasterPos2i@8 = glRasterPos2i
229
+ _glRasterPos2iv@4 = glRasterPos2iv
230
+ _glRasterPos2s@8 = glRasterPos2s
231
+ _glRasterPos2sv@4 = glRasterPos2sv
232
+ _glRasterPos3d@24 = glRasterPos3d
233
+ _glRasterPos3dv@4 = glRasterPos3dv
234
+ _glRasterPos3f@12 = glRasterPos3f
235
+ _glRasterPos3fv@4 = glRasterPos3fv
236
+ _glRasterPos3i@12 = glRasterPos3i
237
+ _glRasterPos3iv@4 = glRasterPos3iv
238
+ _glRasterPos3s@12 = glRasterPos3s
239
+ _glRasterPos3sv@4 = glRasterPos3sv
240
+ _glRasterPos4d@32 = glRasterPos4d
241
+ _glRasterPos4dv@4 = glRasterPos4dv
242
+ _glRasterPos4f@16 = glRasterPos4f
243
+ _glRasterPos4fv@4 = glRasterPos4fv
244
+ _glRasterPos4i@16 = glRasterPos4i
245
+ _glRasterPos4iv@4 = glRasterPos4iv
246
+ _glRasterPos4s@16 = glRasterPos4s
247
+ _glRasterPos4sv@4 = glRasterPos4sv
248
+ _glReadBuffer@4 = glReadBuffer
249
+ _glReadPixels@28 = glReadPixels
250
+ _glRectd@32 = glRectd
251
+ _glRectdv@8 = glRectdv
252
+ _glRectf@16 = glRectf
253
+ _glRectfv@8 = glRectfv
254
+ _glRecti@16 = glRecti
255
+ _glRectiv@8 = glRectiv
256
+ _glRects@16 = glRects
257
+ _glRectsv@8 = glRectsv
258
+ _glRenderMode@4 = glRenderMode
259
+ _glRotated@32 = glRotated
260
+ _glRotatef@16 = glRotatef
261
+ _glScaled@24 = glScaled
262
+ _glScalef@12 = glScalef
263
+ _glScissor@16 = glScissor
264
+ _glSelectBuffer@8 = glSelectBuffer
265
+ _glShadeModel@4 = glShadeModel
266
+ _glStencilFunc@12 = glStencilFunc
267
+ _glStencilMask@4 = glStencilMask
268
+ _glStencilOp@12 = glStencilOp
269
+ _glTexCoord1d@8 = glTexCoord1d
270
+ _glTexCoord1dv@4 = glTexCoord1dv
271
+ _glTexCoord1f@4 = glTexCoord1f
272
+ _glTexCoord1fv@4 = glTexCoord1fv
273
+ _glTexCoord1i@4 = glTexCoord1i
274
+ _glTexCoord1iv@4 = glTexCoord1iv
275
+ _glTexCoord1s@4 = glTexCoord1s
276
+ _glTexCoord1sv@4 = glTexCoord1sv
277
+ _glTexCoord2d@16 = glTexCoord2d
278
+ _glTexCoord2dv@4 = glTexCoord2dv
279
+ _glTexCoord2f@8 = glTexCoord2f
280
+ _glTexCoord2fv@4 = glTexCoord2fv
281
+ _glTexCoord2i@8 = glTexCoord2i
282
+ _glTexCoord2iv@4 = glTexCoord2iv
283
+ _glTexCoord2s@8 = glTexCoord2s
284
+ _glTexCoord2sv@4 = glTexCoord2sv
285
+ _glTexCoord3d@24 = glTexCoord3d
286
+ _glTexCoord3dv@4 = glTexCoord3dv
287
+ _glTexCoord3f@12 = glTexCoord3f
288
+ _glTexCoord3fv@4 = glTexCoord3fv
289
+ _glTexCoord3i@12 = glTexCoord3i
290
+ _glTexCoord3iv@4 = glTexCoord3iv
291
+ _glTexCoord3s@12 = glTexCoord3s
292
+ _glTexCoord3sv@4 = glTexCoord3sv
293
+ _glTexCoord4d@32 = glTexCoord4d
294
+ _glTexCoord4dv@4 = glTexCoord4dv
295
+ _glTexCoord4f@16 = glTexCoord4f
296
+ _glTexCoord4fv@4 = glTexCoord4fv
297
+ _glTexCoord4i@16 = glTexCoord4i
298
+ _glTexCoord4iv@4 = glTexCoord4iv
299
+ _glTexCoord4s@16 = glTexCoord4s
300
+ _glTexCoord4sv@4 = glTexCoord4sv
301
+ _glTexCoordPointer@16 = glTexCoordPointer
302
+ _glTexEnvf@12 = glTexEnvf
303
+ _glTexEnvfv@12 = glTexEnvfv
304
+ _glTexEnvi@12 = glTexEnvi
305
+ _glTexEnviv@12 = glTexEnviv
306
+ _glTexGend@16 = glTexGend
307
+ _glTexGendv@12 = glTexGendv
308
+ _glTexGenf@12 = glTexGenf
309
+ _glTexGenfv@12 = glTexGenfv
310
+ _glTexGeni@12 = glTexGeni
311
+ _glTexGeniv@12 = glTexGeniv
312
+ _glTexImage1D@32 = glTexImage1D
313
+ _glTexImage2D@36 = glTexImage2D
314
+ _glTexParameterf@12 = glTexParameterf
315
+ _glTexParameterfv@12 = glTexParameterfv
316
+ _glTexParameteri@12 = glTexParameteri
317
+ _glTexParameteriv@12 = glTexParameteriv
318
+ _glTexSubImage1D@28 = glTexSubImage1D
319
+ _glTexSubImage2D@36 = glTexSubImage2D
320
+ _glTranslated@24 = glTranslated
321
+ _glTranslatef@12 = glTranslatef
322
+ _glVertex2d@16 = glVertex2d
323
+ _glVertex2dv@4 = glVertex2dv
324
+ _glVertex2f@8 = glVertex2f
325
+ _glVertex2fv@4 = glVertex2fv
326
+ _glVertex2i@8 = glVertex2i
327
+ _glVertex2iv@4 = glVertex2iv
328
+ _glVertex2s@8 = glVertex2s
329
+ _glVertex2sv@4 = glVertex2sv
330
+ _glVertex3d@24 = glVertex3d
331
+ _glVertex3dv@4 = glVertex3dv
332
+ _glVertex3f@12 = glVertex3f
333
+ _glVertex3fv@4 = glVertex3fv
334
+ _glVertex3i@12 = glVertex3i
335
+ _glVertex3iv@4 = glVertex3iv
336
+ _glVertex3s@12 = glVertex3s
337
+ _glVertex3sv@4 = glVertex3sv
338
+ _glVertex4d@32 = glVertex4d
339
+ _glVertex4dv@4 = glVertex4dv
340
+ _glVertex4f@16 = glVertex4f
341
+ _glVertex4fv@4 = glVertex4fv
342
+ _glVertex4i@16 = glVertex4i
343
+ _glVertex4iv@4 = glVertex4iv
344
+ _glVertex4s@16 = glVertex4s
345
+ _glVertex4sv@4 = glVertex4sv
346
+ _glVertexPointer@16 = glVertexPointer
347
+ _glViewport@16 = glViewport
348
+ _wglChoosePixelFormat@8 = wglChoosePixelFormat
349
+ _wglCopyContext@12 = wglCopyContext
350
+ _wglCreateContext@4 = wglCreateContext
351
+ _wglCreateLayerContext@8 = wglCreateLayerContext
352
+ _wglDeleteContext@4 = wglDeleteContext
353
+ _wglDescribeLayerPlane@20 = wglDescribeLayerPlane
354
+ _wglDescribePixelFormat@16 = wglDescribePixelFormat
355
+ _wglGetCurrentContext@0 = wglGetCurrentContext
356
+ _wglGetCurrentDC@0 = wglGetCurrentDC
357
+ _wglGetDefaultProcAddress@4 = wglGetDefaultProcAddress
358
+ _wglGetLayerPaletteEntries@20 = wglGetLayerPaletteEntries
359
+ _wglGetPixelFormat@4 = wglGetPixelFormat
360
+ _wglGetProcAddress@4 = wglGetProcAddress
361
+ _wglMakeCurrent@8 = wglMakeCurrent
362
+ _wglRealizeLayerPalette@12 = wglRealizeLayerPalette
363
+ _wglSetLayerPaletteEntries@20 = wglSetLayerPaletteEntries
364
+ _wglSetPixelFormat@12 = wglSetPixelFormat
365
+ _wglShareLists@8 = wglShareLists
366
+ _wglSwapBuffers@4 = wglSwapBuffers
367
+ _wglSwapLayerBuffers@8 = wglSwapLayerBuffers
368
+ _wglSwapMultipleBuffers@8 = wglSwapMultipleBuffers
369
+ _wglUseFontBitmapsA@16 = wglUseFontBitmapsA
370
+ _wglUseFontBitmapsW@16 = wglUseFontBitmapsW
371
+ _wglUseFontOutlinesA@32 = wglUseFontOutlinesA
372
+ _wglUseFontOutlinesW@32 = wglUseFontOutlinesW