opengl 0.7.0.pre2 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- data/History.rdoc +14 -2
- data/README.rdoc +5 -3
- data/Rakefile.cross +1 -1
- data/ext/opengl/gl-1.0-1.1.c +1 -1
- data/ext/opengl/glut.c +15 -7
- data/lib/opengl.rb +7 -1
- metadata +20 -24
data/History.rdoc
CHANGED
@@ -1,6 +1,18 @@
|
|
1
|
-
=== 0.
|
1
|
+
=== 0.7.0 / 2013-02-03
|
2
2
|
|
3
|
-
*
|
3
|
+
* Better support of 64 bit systems.
|
4
|
+
* Replace mkrf with extconf.rb, hoe and rake-compiler.
|
5
|
+
* Switch to dlopen() from deprecated NSAddImage() and friends for OS X.
|
6
|
+
* glBegin, glPushMatrix, glEnable and glEnableClientState now accept a block.
|
7
|
+
* glEnable/glDisable and glEnableClientState/glDisableClientState now accept
|
8
|
+
multiple arguments.
|
9
|
+
* Allow to_a-able objects for glColor*v, glRasterPos*v, glRect*v, glTexCoord*v,
|
10
|
+
glMaterial, glNormal and glVertex.
|
11
|
+
* Fix unused param count in ARY2CMAT.
|
12
|
+
* Fix a lot of bugs in the test suite.
|
13
|
+
* Merge opengl C extensions into a single extension to avoid code duplication
|
14
|
+
in extconf.rb and simplify rebuilding based on header changes.
|
15
|
+
* Add cross compilation tasks with download of freeglut for binary windows gems
|
4
16
|
|
5
17
|
=== 0.60.1 / 2009-02-16
|
6
18
|
|
data/README.rdoc
CHANGED
@@ -29,7 +29,7 @@ GLU and GLUT libraries.
|
|
29
29
|
|
30
30
|
== Install
|
31
31
|
|
32
|
-
gem install opengl -v "~>0.7.0"
|
32
|
+
gem install opengl -v "~>0.7.0"
|
33
33
|
|
34
34
|
== Developers
|
35
35
|
|
@@ -50,9 +50,11 @@ DLLs.
|
|
50
50
|
|
51
51
|
Install mingw32 or w64 using the instructions in rake-compiler's README.
|
52
52
|
For Debian/Ubuntu it is <tt>apt-get install gcc-mingw-w64</tt> .
|
53
|
+
Use ruby-1.8.7 for the following commands.
|
53
54
|
|
54
|
-
Download and cross compile ruby 1.9 for win32 with:
|
55
|
+
Download and cross compile ruby 1.8 and 1.9 for win32 with:
|
55
56
|
|
57
|
+
rake-compiler cross-ruby VERSION=1.8.7-p357
|
56
58
|
rake-compiler cross-ruby VERSION=1.9.3-p0
|
57
59
|
|
58
60
|
Download and cross compile opengl for win32:
|
@@ -61,7 +63,7 @@ Download and cross compile opengl for win32:
|
|
61
63
|
|
62
64
|
or with custom versions:
|
63
65
|
|
64
|
-
rake cross native gem RUBY_CC_VERSION=1.9.3 LIBFREEGLUT_VERSION=2.8.0
|
66
|
+
rake cross native gem RUBY_CC_VERSION=1.8.7:1.9.3 LIBFREEGLUT_VERSION=2.8.0
|
65
67
|
|
66
68
|
If everything works, there should be ruby-opengl-VERSION-x86-mingw32.gem in the pkg
|
67
69
|
directory.
|
data/Rakefile.cross
CHANGED
data/ext/opengl/gl-1.0-1.1.c
CHANGED
@@ -2609,7 +2609,7 @@ gl_Material(VALUE self, VALUE face, VALUE pname, VALUE param)
|
|
2609
2609
|
{
|
2610
2610
|
VALUE ary;
|
2611
2611
|
|
2612
|
-
if (
|
2612
|
+
if (TYPE(param) == T_ARRAY) {
|
2613
2613
|
gl_Materialfv(self, face, pname, param);
|
2614
2614
|
} else if (ary = rb_convert_type(param, T_ARRAY, "Array", "to_a")) {
|
2615
2615
|
gl_Materialfv(self, face, pname, ary);
|
data/ext/opengl/glut.c
CHANGED
@@ -100,9 +100,9 @@ static VALUE glut_Init( int argc, VALUE * argv, VALUE obj)
|
|
100
100
|
|
101
101
|
if (rb_scan_args(argc, argv, "01", &orig_arg) == 0)
|
102
102
|
orig_arg = rb_eval_string("[$0] + ARGV");
|
103
|
-
else
|
103
|
+
else
|
104
104
|
Check_Type(orig_arg, T_ARRAY);
|
105
|
-
|
105
|
+
|
106
106
|
/* converts commandline parameters from ruby to C, passes them
|
107
107
|
to glutInit and returns the parameters stripped of glut-specific
|
108
108
|
commands ("-display","-geometry" etc.) */
|
@@ -110,9 +110,9 @@ static VALUE glut_Init( int argc, VALUE * argv, VALUE obj)
|
|
110
110
|
largv = ALLOCA_N(char*, largc);
|
111
111
|
for (i = 0; i < largc; i++)
|
112
112
|
largv[i] = StringValueCStr(RARRAY_PTR(orig_arg)[i]);
|
113
|
-
|
113
|
+
|
114
114
|
glutInit(&largc, largv);
|
115
|
-
|
115
|
+
|
116
116
|
new_argv = rb_ary_new2(largc);
|
117
117
|
for (i = 0; i < largc; i++)
|
118
118
|
rb_ary_push(new_argv,rb_str_new2(largv[i]));
|
@@ -256,7 +256,7 @@ VALUE obj,callback,arg2;
|
|
256
256
|
return Qnil;
|
257
257
|
}
|
258
258
|
|
259
|
-
/* GLUT window sub-API. */
|
259
|
+
/* GLUT window sub-API. */
|
260
260
|
static VALUE glut_CreateWindow(argc, argv, obj)
|
261
261
|
int argc;
|
262
262
|
VALUE* argv;
|
@@ -988,7 +988,7 @@ static inline void * bitmap_font_map(int f)
|
|
988
988
|
switch (f) {
|
989
989
|
case 0: return (void *)GLUT_BITMAP_9_BY_15;
|
990
990
|
case 1: return (void *)GLUT_BITMAP_8_BY_13;
|
991
|
-
case 2: return (void *)GLUT_BITMAP_TIMES_ROMAN_10;
|
991
|
+
case 2: return (void *)GLUT_BITMAP_TIMES_ROMAN_10;
|
992
992
|
case 3: return (void *)GLUT_BITMAP_TIMES_ROMAN_24;
|
993
993
|
case 4: return (void *)GLUT_BITMAP_HELVETICA_10;
|
994
994
|
case 5: return (void *)GLUT_BITMAP_HELVETICA_12;
|
@@ -1460,7 +1460,7 @@ DLLEXPORT void Init_glut()
|
|
1460
1460
|
rb_define_module_function(module, "glutIgnoreKeyRepeat", glut_IgnoreKeyRepeat, 1);
|
1461
1461
|
rb_define_module_function(module, "glutPostWindowOverlayRedisplay", glut_PostWindowOverlayRedisplay, 1);
|
1462
1462
|
rb_define_module_function(module, "glutPostWindowRedisplay", glut_PostWindowRedisplay, 1);
|
1463
|
-
|
1463
|
+
|
1464
1464
|
rb_define_const(module, "GLUT_API_VERSION", INT2NUM(GLUT_API_VERSION));
|
1465
1465
|
rb_define_const(module, "GLUT_XLIB_IMPLEMENTATION", INT2NUM(GLUT_XLIB_IMPLEMENTATION));
|
1466
1466
|
rb_define_const(module, "GLUT_RGB", INT2NUM(GLUT_RGB));
|
@@ -1637,6 +1637,14 @@ DLLEXPORT void Init_glut()
|
|
1637
1637
|
rb_define_const(module, "GLUT_GAME_MODE_PIXEL_DEPTH", INT2NUM(GLUT_GAME_MODE_PIXEL_DEPTH));
|
1638
1638
|
rb_define_const(module, "GLUT_GAME_MODE_REFRESH_RATE", INT2NUM(GLUT_GAME_MODE_REFRESH_RATE));
|
1639
1639
|
rb_define_const(module, "GLUT_GAME_MODE_DISPLAY_CHANGED", INT2NUM(GLUT_GAME_MODE_DISPLAY_CHANGED));
|
1640
|
+
|
1641
|
+
// Some OSX specific constants
|
1642
|
+
#ifdef GLUT_NO_RECOVERY
|
1643
|
+
rb_define_const(mGlut, "GLUT_NO_RECOVERY", INT2NUM(GLUT_NO_RECOVERY));
|
1644
|
+
#endif
|
1645
|
+
#ifdef GLUT_3_2_CORE_PROFILE
|
1646
|
+
rb_define_const(mGlut, "GLUT_3_2_CORE_PROFILE", INT2NUM(GLUT_3_2_CORE_PROFILE));
|
1647
|
+
#endif
|
1640
1648
|
|
1641
1649
|
|
1642
1650
|
callId = rb_intern("call");
|
data/lib/opengl.rb
CHANGED
@@ -20,9 +20,14 @@
|
|
20
20
|
# Thanks to Ilmari Heikkinen for a previous "reversed" version of this code,
|
21
21
|
# and to Bill Kelly for a version before that one.
|
22
22
|
|
23
|
+
# Extend the search path for Windows binary gem, depending of the current ruby version
|
24
|
+
major_minor = RUBY_VERSION[ /^(\d+\.\d+)/ ] or
|
25
|
+
raise "Oops, can't extract the major/minor version from #{RUBY_VERSION.dump}"
|
26
|
+
$: << File.join(File.dirname(__FILE__), major_minor)
|
27
|
+
|
23
28
|
module OpenGL
|
24
29
|
|
25
|
-
VERSION = '0.7.0
|
30
|
+
VERSION = '0.7.0'
|
26
31
|
|
27
32
|
end
|
28
33
|
|
@@ -77,6 +82,7 @@ module GLUT
|
|
77
82
|
|
78
83
|
Glut.constants.each do |cn|
|
79
84
|
n = cn.to_s.sub(/^GLUT_/,'')
|
85
|
+
next if n =~ /^[0-9]/
|
80
86
|
const_set( n, Glut.const_get( cn ) )
|
81
87
|
end
|
82
88
|
|
metadata
CHANGED
@@ -1,15 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: opengl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 3
|
5
|
+
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 7
|
9
9
|
- 0
|
10
|
-
|
11
|
-
- 2
|
12
|
-
version: 0.7.0.pre2
|
10
|
+
version: 0.7.0
|
13
11
|
platform: ruby
|
14
12
|
authors:
|
15
13
|
- Eric Hodel
|
@@ -21,7 +19,7 @@ autorequire:
|
|
21
19
|
bindir: bin
|
22
20
|
cert_chain: []
|
23
21
|
|
24
|
-
date:
|
22
|
+
date: 2013-02-03 00:00:00 Z
|
25
23
|
dependencies:
|
26
24
|
- !ruby/object:Gem::Dependency
|
27
25
|
name: rdoc
|
@@ -84,11 +82,11 @@ dependencies:
|
|
84
82
|
requirements:
|
85
83
|
- - ~>
|
86
84
|
- !ruby/object:Gem::Version
|
87
|
-
hash:
|
85
|
+
hash: 13
|
88
86
|
segments:
|
89
87
|
- 3
|
90
|
-
-
|
91
|
-
version: "3.
|
88
|
+
- 5
|
89
|
+
version: "3.5"
|
92
90
|
type: :development
|
93
91
|
version_requirements: *id004
|
94
92
|
description: |-
|
@@ -298,33 +296,31 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
298
296
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
299
297
|
none: false
|
300
298
|
requirements:
|
301
|
-
- - "
|
299
|
+
- - ">="
|
302
300
|
- !ruby/object:Gem::Version
|
303
|
-
hash:
|
301
|
+
hash: 3
|
304
302
|
segments:
|
305
|
-
-
|
306
|
-
|
307
|
-
- 1
|
308
|
-
version: 1.3.1
|
303
|
+
- 0
|
304
|
+
version: "0"
|
309
305
|
requirements: []
|
310
306
|
|
311
307
|
rubyforge_project: opengl
|
312
|
-
rubygems_version: 1.8.
|
308
|
+
rubygems_version: 1.8.15
|
313
309
|
signing_key:
|
314
310
|
specification_version: 3
|
315
311
|
summary: An OpenGL wrapper for Ruby
|
316
312
|
test_files:
|
317
|
-
- test/
|
318
|
-
- test/test_gl_10_11.rb
|
313
|
+
- test/test_gl_ext_ext.rb
|
319
314
|
- test/test_gl_12.rb
|
320
|
-
- test/test_gl_14.rb
|
321
|
-
- test/test_glu.rb
|
322
315
|
- test/test_gl_15.rb
|
323
|
-
- test/
|
324
|
-
- test/test_gl_ext_ati.rb
|
325
|
-
- test/test_gl_ext_ext.rb
|
326
|
-
- test/test_gl_21.rb
|
316
|
+
- test/test_glu.rb
|
327
317
|
- test/test_gl_20.rb
|
318
|
+
- test/test_gl_13.rb
|
328
319
|
- test/test_gl_ext_gremedy.rb
|
329
320
|
- test/test_gl.rb
|
321
|
+
- test/test_gl_ext_nv.rb
|
330
322
|
- test/test_gl_ext_arb.rb
|
323
|
+
- test/test_gl_10_11.rb
|
324
|
+
- test/test_gl_ext_ati.rb
|
325
|
+
- test/test_gl_14.rb
|
326
|
+
- test/test_gl_21.rb
|