opengl-bindings 1.6.9 → 1.6.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ChangeLog +32 -0
- data/LICENSE.txt +1 -1
- data/README.md +50 -2
- data/lib/glfw.rb +1 -1
- data/lib/glfw32.rb +594 -0
- data/lib/glu.rb +1 -1
- data/lib/glut.rb +1 -1
- data/lib/opengl.rb +1 -1
- data/lib/opengl_command.rb +12 -12
- data/lib/opengl_common.rb +0 -0
- data/lib/opengl_enum.rb +0 -0
- data/lib/opengl_es.rb +1 -1
- data/lib/opengl_es_command.rb +6 -6
- data/lib/opengl_es_enum.rb +0 -0
- data/lib/opengl_es_ext.rb +1 -1
- data/lib/opengl_es_ext_command.rb +166 -10
- data/lib/opengl_es_ext_enum.rb +153 -0
- data/lib/opengl_ext.rb +1 -1
- data/lib/opengl_ext_command.rb +251 -24
- data/lib/opengl_ext_common.rb +0 -0
- data/lib/opengl_ext_enum.rb +120 -0
- data/lib/opengl_linux.rb +1 -1
- data/lib/opengl_macosx.rb +1 -1
- data/lib/opengl_platform.rb +1 -1
- data/lib/opengl_windows.rb +1 -1
- data/sample/glfw_build.sh +0 -0
- metadata +4 -3
data/lib/opengl_linux.rb
CHANGED
@@ -40,7 +40,7 @@ end
|
|
40
40
|
|
41
41
|
=begin
|
42
42
|
Ruby-OpenGL : Yet another OpenGL wrapper for Ruby (and wrapper code generator)
|
43
|
-
Copyright (c) 2013-
|
43
|
+
Copyright (c) 2013-2020 vaiorabbit <http://twitter.com/vaiorabbit>
|
44
44
|
|
45
45
|
This software is provided 'as-is', without any express or implied
|
46
46
|
warranty. In no event will the authors be held liable for any damages
|
data/lib/opengl_macosx.rb
CHANGED
@@ -45,7 +45,7 @@ end
|
|
45
45
|
|
46
46
|
=begin
|
47
47
|
Ruby-OpenGL : Yet another OpenGL wrapper for Ruby (and wrapper code generator)
|
48
|
-
Copyright (c) 2013-
|
48
|
+
Copyright (c) 2013-2020 vaiorabbit <http://twitter.com/vaiorabbit>
|
49
49
|
|
50
50
|
This software is provided 'as-is', without any express or implied
|
51
51
|
warranty. In no event will the authors be held liable for any damages
|
data/lib/opengl_platform.rb
CHANGED
@@ -20,7 +20,7 @@ end
|
|
20
20
|
|
21
21
|
=begin
|
22
22
|
Ruby-OpenGL : Yet another OpenGL wrapper for Ruby (and wrapper code generator)
|
23
|
-
Copyright (c) 2013-
|
23
|
+
Copyright (c) 2013-2020 vaiorabbit <http://twitter.com/vaiorabbit>
|
24
24
|
|
25
25
|
This software is provided 'as-is', without any express or implied
|
26
26
|
warranty. In no event will the authors be held liable for any damages
|
data/lib/opengl_windows.rb
CHANGED
@@ -48,7 +48,7 @@ end
|
|
48
48
|
|
49
49
|
=begin
|
50
50
|
Ruby-OpenGL : Yet another OpenGL wrapper for Ruby (and wrapper code generator)
|
51
|
-
Copyright (c) 2013-
|
51
|
+
Copyright (c) 2013-2020 vaiorabbit <http://twitter.com/vaiorabbit>
|
52
52
|
|
53
53
|
This software is provided 'as-is', without any express or implied
|
54
54
|
warranty. In no event will the authors be held liable for any damages
|
data/sample/glfw_build.sh
CHANGED
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: opengl-bindings
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
4
|
+
version: 1.6.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- vaiorabbit
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-04-25 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: 'Ruby bindings for OpenGL - 4.6, OpenGL ES - 3.2 and all extensions using
|
14
14
|
Fiddle (For MRI >= 2.0.0). GLFW/GLUT/GLU bindings are also available.
|
@@ -24,6 +24,7 @@ files:
|
|
24
24
|
- LICENSE.txt
|
25
25
|
- README.md
|
26
26
|
- lib/glfw.rb
|
27
|
+
- lib/glfw32.rb
|
27
28
|
- lib/glu.rb
|
28
29
|
- lib/glut.rb
|
29
30
|
- lib/opengl.rb
|
@@ -69,7 +70,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
70
|
- !ruby/object:Gem::Version
|
70
71
|
version: '0'
|
71
72
|
requirements: []
|
72
|
-
rubygems_version: 3.
|
73
|
+
rubygems_version: 3.1.2
|
73
74
|
signing_key:
|
74
75
|
specification_version: 4
|
75
76
|
summary: Bindings for OpenGL -4.6, ES - 3.2 and extensions (For MRI >= 2.0.0)
|