opengl 0.7.0.pre1-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/.gemtest +0 -0
- data/.gitignore +8 -0
- data/History.txt +36 -0
- data/MIT-LICENSE +18 -0
- data/Manifest.txt +140 -0
- data/README.rdoc +51 -0
- data/Rakefile +129 -0
- data/Rakefile.cross +104 -0
- data/doc/build_install.txt +119 -0
- data/doc/extensions.txt.in +348 -0
- data/doc/history.txt +66 -0
- data/doc/requirements_and_design.txt +117 -0
- data/doc/roadmap.txt +28 -0
- data/doc/scientific_use.txt +35 -0
- data/doc/supplies/page_template.html +71 -0
- data/doc/thanks.txt +29 -0
- data/doc/tutorial.txt +469 -0
- data/examples/NeHe/nehe_lesson02.rb +117 -0
- data/examples/NeHe/nehe_lesson03.rb +122 -0
- data/examples/NeHe/nehe_lesson04.rb +133 -0
- data/examples/NeHe/nehe_lesson05.rb +186 -0
- data/examples/NeHe/nehe_lesson36.rb +303 -0
- data/examples/OrangeBook/3Dlabs-License.txt +33 -0
- data/examples/OrangeBook/brick.frag +36 -0
- data/examples/OrangeBook/brick.rb +376 -0
- data/examples/OrangeBook/brick.vert +41 -0
- data/examples/OrangeBook/particle.frag +17 -0
- data/examples/OrangeBook/particle.rb +406 -0
- data/examples/OrangeBook/particle.vert +38 -0
- data/examples/README +16 -0
- data/examples/RedBook/aapoly.rb +142 -0
- data/examples/RedBook/aargb.rb +119 -0
- data/examples/RedBook/accanti.rb +162 -0
- data/examples/RedBook/accpersp.rb +215 -0
- data/examples/RedBook/alpha.rb +123 -0
- data/examples/RedBook/alpha3D.rb +158 -0
- data/examples/RedBook/bezcurve.rb +105 -0
- data/examples/RedBook/bezmesh.rb +137 -0
- data/examples/RedBook/checker.rb +124 -0
- data/examples/RedBook/clip.rb +95 -0
- data/examples/RedBook/colormat.rb +135 -0
- data/examples/RedBook/cube.rb +69 -0
- data/examples/RedBook/depthcue.rb +99 -0
- data/examples/RedBook/dof.rb +205 -0
- data/examples/RedBook/double.rb +105 -0
- data/examples/RedBook/drawf.rb +91 -0
- data/examples/RedBook/feedback.rb +145 -0
- data/examples/RedBook/fog.rb +167 -0
- data/examples/RedBook/font.rb +151 -0
- data/examples/RedBook/hello.rb +79 -0
- data/examples/RedBook/image.rb +137 -0
- data/examples/RedBook/jitter.rb +207 -0
- data/examples/RedBook/lines.rb +128 -0
- data/examples/RedBook/list.rb +111 -0
- data/examples/RedBook/material.rb +275 -0
- data/examples/RedBook/mipmap.rb +156 -0
- data/examples/RedBook/model.rb +113 -0
- data/examples/RedBook/movelight.rb +132 -0
- data/examples/RedBook/pickdepth.rb +179 -0
- data/examples/RedBook/planet.rb +108 -0
- data/examples/RedBook/quadric.rb +158 -0
- data/examples/RedBook/robot.rb +115 -0
- data/examples/RedBook/select.rb +196 -0
- data/examples/RedBook/smooth.rb +95 -0
- data/examples/RedBook/stencil.rb +163 -0
- data/examples/RedBook/stroke.rb +167 -0
- data/examples/RedBook/surface.rb +166 -0
- data/examples/RedBook/teaambient.rb +132 -0
- data/examples/RedBook/teapots.rb +182 -0
- data/examples/RedBook/tess.rb +183 -0
- data/examples/RedBook/texbind.rb +147 -0
- data/examples/RedBook/texgen.rb +169 -0
- data/examples/RedBook/texturesurf.rb +128 -0
- data/examples/RedBook/varray.rb +159 -0
- data/examples/RedBook/wrap.rb +148 -0
- data/examples/misc/OGLBench.rb +337 -0
- data/examples/misc/anisotropic.rb +194 -0
- data/examples/misc/fbo_test.rb +356 -0
- data/examples/misc/font-glut.rb +46 -0
- data/examples/misc/glfwtest.rb +30 -0
- data/examples/misc/plane.rb +161 -0
- data/examples/misc/readpixel.rb +65 -0
- data/examples/misc/sdltest.rb +34 -0
- data/examples/misc/trislam.rb +828 -0
- data/ext/common/common.h +448 -0
- data/ext/common/conv.h +234 -0
- data/ext/common/funcdef.h +280 -0
- data/ext/common/gl-enums.h +10031 -0
- data/ext/common/gl-error.h +23 -0
- data/ext/common/gl-types.h +67 -0
- data/ext/common/glu-enums.h +463 -0
- data/ext/gl/extconf.rb +43 -0
- data/ext/gl/gl-1.0-1.1.c +2811 -0
- data/ext/gl/gl-1.2.c +814 -0
- data/ext/gl/gl-1.3.c +443 -0
- data/ext/gl/gl-1.4.c +348 -0
- data/ext/gl/gl-1.5.c +225 -0
- data/ext/gl/gl-2.0.c +657 -0
- data/ext/gl/gl-2.1.c +57 -0
- data/ext/gl/gl-enums.c +3354 -0
- data/ext/gl/gl-error.c +104 -0
- data/ext/gl/gl-ext-3dfx.c +27 -0
- data/ext/gl/gl-ext-arb.c +866 -0
- data/ext/gl/gl-ext-ati.c +41 -0
- data/ext/gl/gl-ext-ext.c +889 -0
- data/ext/gl/gl-ext-gremedy.c +41 -0
- data/ext/gl/gl-ext-nv.c +679 -0
- data/ext/gl/gl.c +216 -0
- data/ext/glu/extconf.rb +51 -0
- data/ext/glu/glu-enums.c +164 -0
- data/ext/glu/glu.c +1530 -0
- data/ext/glut/extconf.rb +67 -0
- data/ext/glut/glut.c +1624 -0
- data/lib/opengl.rb +89 -0
- data/test/README +10 -0
- data/test/tc_common.rb +98 -0
- data/test/tc_ext_arb.rb +467 -0
- data/test/tc_ext_ati.rb +33 -0
- data/test/tc_ext_ext.rb +551 -0
- data/test/tc_ext_gremedy.rb +36 -0
- data/test/tc_ext_nv.rb +357 -0
- data/test/tc_func_10_11.rb +1281 -0
- data/test/tc_func_12.rb +186 -0
- data/test/tc_func_13.rb +229 -0
- data/test/tc_func_14.rb +197 -0
- data/test/tc_func_15.rb +270 -0
- data/test/tc_func_20.rb +346 -0
- data/test/tc_func_21.rb +541 -0
- data/test/tc_glu.rb +310 -0
- data/test/tc_include_gl.rb +35 -0
- data/test/tc_misc.rb +54 -0
- data/test/tc_require_gl.rb +34 -0
- data/utils/README +11 -0
- data/utils/enumgen.rb +112 -0
- data/utils/extlistgen.rb +90 -0
- data/utils/mkdn2html.rb +59 -0
- data/utils/post-mkdn2html.rb +91 -0
- data/website/images/ogl.jpg +0 -0
- data/website/images/tab_bottom.gif +0 -0
- data/website/style.css +198 -0
- metadata +274 -0
metadata
ADDED
@@ -0,0 +1,274 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: opengl
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 1923832027
|
5
|
+
prerelease: 6
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 7
|
9
|
+
- 0
|
10
|
+
- pre
|
11
|
+
- 1
|
12
|
+
version: 0.7.0.pre1
|
13
|
+
platform: x86-mingw32
|
14
|
+
authors:
|
15
|
+
- Alain Hoang
|
16
|
+
- Jan Dvorak
|
17
|
+
- Minh Thu Vo
|
18
|
+
- James Adam
|
19
|
+
autorequire:
|
20
|
+
bindir: bin
|
21
|
+
cert_chain: []
|
22
|
+
|
23
|
+
date: 2012-01-31 00:00:00 Z
|
24
|
+
dependencies:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: rake-compiler
|
27
|
+
prerelease: false
|
28
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
29
|
+
none: false
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
hash: 27
|
34
|
+
segments:
|
35
|
+
- 0
|
36
|
+
- 8
|
37
|
+
version: "0.8"
|
38
|
+
type: :development
|
39
|
+
version_requirements: *id001
|
40
|
+
- !ruby/object:Gem::Dependency
|
41
|
+
name: hoe
|
42
|
+
prerelease: false
|
43
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
44
|
+
none: false
|
45
|
+
requirements:
|
46
|
+
- - ~>
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
hash: 27
|
49
|
+
segments:
|
50
|
+
- 2
|
51
|
+
- 12
|
52
|
+
version: "2.12"
|
53
|
+
type: :development
|
54
|
+
version_requirements: *id002
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rdoc
|
57
|
+
prerelease: false
|
58
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
59
|
+
none: false
|
60
|
+
requirements:
|
61
|
+
- - ~>
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
hash: 19
|
64
|
+
segments:
|
65
|
+
- 3
|
66
|
+
- 10
|
67
|
+
version: "3.10"
|
68
|
+
type: :development
|
69
|
+
version_requirements: *id003
|
70
|
+
description: |-
|
71
|
+
Ruby-OpenGL consists of Ruby extension modules that are bindings for
|
72
|
+
the OpenGL, GLU, and GLUT libraries.
|
73
|
+
email: ruby-opengl-devel@rubyforge.org
|
74
|
+
executables: []
|
75
|
+
|
76
|
+
extensions: []
|
77
|
+
|
78
|
+
extra_rdoc_files:
|
79
|
+
- History.txt
|
80
|
+
- Manifest.txt
|
81
|
+
- doc/build_install.txt
|
82
|
+
- doc/history.txt
|
83
|
+
- doc/requirements_and_design.txt
|
84
|
+
- doc/roadmap.txt
|
85
|
+
- doc/scientific_use.txt
|
86
|
+
- doc/thanks.txt
|
87
|
+
- doc/tutorial.txt
|
88
|
+
- examples/OrangeBook/3Dlabs-License.txt
|
89
|
+
- README.rdoc
|
90
|
+
files:
|
91
|
+
- .gemtest
|
92
|
+
- .gitignore
|
93
|
+
- History.txt
|
94
|
+
- MIT-LICENSE
|
95
|
+
- Manifest.txt
|
96
|
+
- README.rdoc
|
97
|
+
- Rakefile
|
98
|
+
- Rakefile.cross
|
99
|
+
- doc/build_install.txt
|
100
|
+
- doc/extensions.txt.in
|
101
|
+
- doc/history.txt
|
102
|
+
- doc/requirements_and_design.txt
|
103
|
+
- doc/roadmap.txt
|
104
|
+
- doc/scientific_use.txt
|
105
|
+
- doc/supplies/page_template.html
|
106
|
+
- doc/thanks.txt
|
107
|
+
- doc/tutorial.txt
|
108
|
+
- examples/NeHe/nehe_lesson02.rb
|
109
|
+
- examples/NeHe/nehe_lesson03.rb
|
110
|
+
- examples/NeHe/nehe_lesson04.rb
|
111
|
+
- examples/NeHe/nehe_lesson05.rb
|
112
|
+
- examples/NeHe/nehe_lesson36.rb
|
113
|
+
- examples/OrangeBook/3Dlabs-License.txt
|
114
|
+
- examples/OrangeBook/brick.frag
|
115
|
+
- examples/OrangeBook/brick.rb
|
116
|
+
- examples/OrangeBook/brick.vert
|
117
|
+
- examples/OrangeBook/particle.frag
|
118
|
+
- examples/OrangeBook/particle.rb
|
119
|
+
- examples/OrangeBook/particle.vert
|
120
|
+
- examples/README
|
121
|
+
- examples/RedBook/aapoly.rb
|
122
|
+
- examples/RedBook/aargb.rb
|
123
|
+
- examples/RedBook/accanti.rb
|
124
|
+
- examples/RedBook/accpersp.rb
|
125
|
+
- examples/RedBook/alpha.rb
|
126
|
+
- examples/RedBook/alpha3D.rb
|
127
|
+
- examples/RedBook/bezcurve.rb
|
128
|
+
- examples/RedBook/bezmesh.rb
|
129
|
+
- examples/RedBook/checker.rb
|
130
|
+
- examples/RedBook/clip.rb
|
131
|
+
- examples/RedBook/colormat.rb
|
132
|
+
- examples/RedBook/cube.rb
|
133
|
+
- examples/RedBook/depthcue.rb
|
134
|
+
- examples/RedBook/dof.rb
|
135
|
+
- examples/RedBook/double.rb
|
136
|
+
- examples/RedBook/drawf.rb
|
137
|
+
- examples/RedBook/feedback.rb
|
138
|
+
- examples/RedBook/fog.rb
|
139
|
+
- examples/RedBook/font.rb
|
140
|
+
- examples/RedBook/hello.rb
|
141
|
+
- examples/RedBook/image.rb
|
142
|
+
- examples/RedBook/jitter.rb
|
143
|
+
- examples/RedBook/lines.rb
|
144
|
+
- examples/RedBook/list.rb
|
145
|
+
- examples/RedBook/material.rb
|
146
|
+
- examples/RedBook/mipmap.rb
|
147
|
+
- examples/RedBook/model.rb
|
148
|
+
- examples/RedBook/movelight.rb
|
149
|
+
- examples/RedBook/pickdepth.rb
|
150
|
+
- examples/RedBook/planet.rb
|
151
|
+
- examples/RedBook/quadric.rb
|
152
|
+
- examples/RedBook/robot.rb
|
153
|
+
- examples/RedBook/select.rb
|
154
|
+
- examples/RedBook/smooth.rb
|
155
|
+
- examples/RedBook/stencil.rb
|
156
|
+
- examples/RedBook/stroke.rb
|
157
|
+
- examples/RedBook/surface.rb
|
158
|
+
- examples/RedBook/teaambient.rb
|
159
|
+
- examples/RedBook/teapots.rb
|
160
|
+
- examples/RedBook/tess.rb
|
161
|
+
- examples/RedBook/texbind.rb
|
162
|
+
- examples/RedBook/texgen.rb
|
163
|
+
- examples/RedBook/texturesurf.rb
|
164
|
+
- examples/RedBook/varray.rb
|
165
|
+
- examples/RedBook/wrap.rb
|
166
|
+
- examples/misc/OGLBench.rb
|
167
|
+
- examples/misc/anisotropic.rb
|
168
|
+
- examples/misc/fbo_test.rb
|
169
|
+
- examples/misc/font-glut.rb
|
170
|
+
- examples/misc/glfwtest.rb
|
171
|
+
- examples/misc/plane.rb
|
172
|
+
- examples/misc/readpixel.rb
|
173
|
+
- examples/misc/sdltest.rb
|
174
|
+
- examples/misc/trislam.rb
|
175
|
+
- ext/common/common.h
|
176
|
+
- ext/common/conv.h
|
177
|
+
- ext/common/funcdef.h
|
178
|
+
- ext/common/gl-enums.h
|
179
|
+
- ext/common/gl-error.h
|
180
|
+
- ext/common/gl-types.h
|
181
|
+
- ext/common/glu-enums.h
|
182
|
+
- ext/gl/extconf.rb
|
183
|
+
- ext/gl/gl-1.0-1.1.c
|
184
|
+
- ext/gl/gl-1.2.c
|
185
|
+
- ext/gl/gl-1.3.c
|
186
|
+
- ext/gl/gl-1.4.c
|
187
|
+
- ext/gl/gl-1.5.c
|
188
|
+
- ext/gl/gl-2.0.c
|
189
|
+
- ext/gl/gl-2.1.c
|
190
|
+
- ext/gl/gl-enums.c
|
191
|
+
- ext/gl/gl-error.c
|
192
|
+
- ext/gl/gl-ext-3dfx.c
|
193
|
+
- ext/gl/gl-ext-arb.c
|
194
|
+
- ext/gl/gl-ext-ati.c
|
195
|
+
- ext/gl/gl-ext-ext.c
|
196
|
+
- ext/gl/gl-ext-gremedy.c
|
197
|
+
- ext/gl/gl-ext-nv.c
|
198
|
+
- ext/gl/gl.c
|
199
|
+
- ext/glu/extconf.rb
|
200
|
+
- ext/glu/glu-enums.c
|
201
|
+
- ext/glu/glu.c
|
202
|
+
- ext/glut/extconf.rb
|
203
|
+
- ext/glut/glut.c
|
204
|
+
- lib/opengl.rb
|
205
|
+
- test/README
|
206
|
+
- test/tc_common.rb
|
207
|
+
- test/tc_ext_arb.rb
|
208
|
+
- test/tc_ext_ati.rb
|
209
|
+
- test/tc_ext_ext.rb
|
210
|
+
- test/tc_ext_gremedy.rb
|
211
|
+
- test/tc_ext_nv.rb
|
212
|
+
- test/tc_func_10_11.rb
|
213
|
+
- test/tc_func_12.rb
|
214
|
+
- test/tc_func_13.rb
|
215
|
+
- test/tc_func_14.rb
|
216
|
+
- test/tc_func_15.rb
|
217
|
+
- test/tc_func_20.rb
|
218
|
+
- test/tc_func_21.rb
|
219
|
+
- test/tc_glu.rb
|
220
|
+
- test/tc_include_gl.rb
|
221
|
+
- test/tc_misc.rb
|
222
|
+
- test/tc_require_gl.rb
|
223
|
+
- utils/README
|
224
|
+
- utils/enumgen.rb
|
225
|
+
- utils/extlistgen.rb
|
226
|
+
- utils/mkdn2html.rb
|
227
|
+
- utils/post-mkdn2html.rb
|
228
|
+
- website/images/ogl.jpg
|
229
|
+
- website/images/tab_bottom.gif
|
230
|
+
- website/style.css
|
231
|
+
- lib/1.8/gl.so
|
232
|
+
- lib/1.9/gl.so
|
233
|
+
- lib/1.8/glu.so
|
234
|
+
- lib/1.9/glu.so
|
235
|
+
- lib/1.8/glut.so
|
236
|
+
- lib/1.9/glut.so
|
237
|
+
homepage: http://ruby-opengl.rubyforge.org
|
238
|
+
licenses: []
|
239
|
+
|
240
|
+
post_install_message:
|
241
|
+
rdoc_options:
|
242
|
+
- --main
|
243
|
+
- README.rdoc
|
244
|
+
require_paths:
|
245
|
+
- lib
|
246
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
247
|
+
none: false
|
248
|
+
requirements:
|
249
|
+
- - ">="
|
250
|
+
- !ruby/object:Gem::Version
|
251
|
+
hash: 3
|
252
|
+
segments:
|
253
|
+
- 0
|
254
|
+
version: "0"
|
255
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
256
|
+
none: false
|
257
|
+
requirements:
|
258
|
+
- - ">"
|
259
|
+
- !ruby/object:Gem::Version
|
260
|
+
hash: 25
|
261
|
+
segments:
|
262
|
+
- 1
|
263
|
+
- 3
|
264
|
+
- 1
|
265
|
+
version: 1.3.1
|
266
|
+
requirements: []
|
267
|
+
|
268
|
+
rubyforge_project: ruby-opengl
|
269
|
+
rubygems_version: 1.8.11
|
270
|
+
signing_key:
|
271
|
+
specification_version: 3
|
272
|
+
summary: Ruby-OpenGL consists of Ruby extension modules that are bindings for the OpenGL, GLU, and GLUT libraries.
|
273
|
+
test_files: []
|
274
|
+
|