opengl-bindings2 2.0.0.rc1 → 2.0.0rc2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ChangeLog +691 -686
- data/README.md +564 -564
- data/lib/glfw.rb +699 -699
- data/lib/glu.rb +366 -366
- data/lib/glut.rb +575 -575
- data/lib/opengl.rb +36 -36
- data/lib/opengl_command.rb +7356 -7356
- data/lib/opengl_common.rb +81 -81
- data/lib/opengl_enum.rb +1818 -1818
- data/lib/opengl_es.rb +31 -31
- data/lib/opengl_es_command.rb +2526 -2526
- data/lib/opengl_es_enum.rb +1011 -1011
- data/lib/opengl_es_ext.rb +28 -28
- data/lib/opengl_es_ext_command.rb +8969 -8969
- data/lib/opengl_es_ext_enum.rb +6078 -6078
- data/lib/opengl_ext.rb +28 -28
- data/lib/opengl_ext_command.rb +33331 -33331
- data/lib/opengl_ext_common.rb +52 -52
- data/lib/opengl_ext_enum.rb +14137 -14137
- data/lib/opengl_linux.rb +63 -63
- data/lib/opengl_macosx.rb +68 -68
- data/lib/opengl_platform.rb +43 -43
- data/lib/opengl_windows.rb +71 -71
- data/sample/README.md +55 -55
- data/sample/glfw_get.bat +6 -6
- data/sample/glfw_get.sh +3 -3
- data/sample/report_env.rb +7 -7
- data/sample/simple.rb +57 -57
- metadata +3 -3
data/lib/opengl_es_ext.rb
CHANGED
@@ -1,28 +1,28 @@
|
|
1
|
-
require_relative 'opengl_common'
|
2
|
-
require_relative 'opengl_ext_common'
|
3
|
-
require_relative 'opengl_es_ext_enum'
|
4
|
-
require_relative 'opengl_es_ext_command'
|
5
|
-
|
6
|
-
=begin
|
7
|
-
Ruby-OpenGL : Yet another OpenGL wrapper for Ruby (and wrapper code generator)
|
8
|
-
Copyright (c) 2013-2022 vaiorabbit <http://twitter.com/vaiorabbit>
|
9
|
-
|
10
|
-
This software is provided 'as-is', without any express or implied
|
11
|
-
warranty. In no event will the authors be held liable for any damages
|
12
|
-
arising from the use of this software.
|
13
|
-
|
14
|
-
Permission is granted to anyone to use this software for any purpose,
|
15
|
-
including commercial applications, and to alter it and redistribute it
|
16
|
-
freely, subject to the following restrictions:
|
17
|
-
|
18
|
-
1. The origin of this software must not be misrepresented; you must not
|
19
|
-
claim that you wrote the original software. If you use this software
|
20
|
-
in a product, an acknowledgment in the product documentation would be
|
21
|
-
appreciated but is not required.
|
22
|
-
|
23
|
-
2. Altered source versions must be plainly marked as such, and must not be
|
24
|
-
misrepresented as being the original software.
|
25
|
-
|
26
|
-
3. This notice may not be removed or altered from any source
|
27
|
-
distribution.
|
28
|
-
=end
|
1
|
+
require_relative 'opengl_common'
|
2
|
+
require_relative 'opengl_ext_common'
|
3
|
+
require_relative 'opengl_es_ext_enum'
|
4
|
+
require_relative 'opengl_es_ext_command'
|
5
|
+
|
6
|
+
=begin
|
7
|
+
Ruby-OpenGL : Yet another OpenGL wrapper for Ruby (and wrapper code generator)
|
8
|
+
Copyright (c) 2013-2022 vaiorabbit <http://twitter.com/vaiorabbit>
|
9
|
+
|
10
|
+
This software is provided 'as-is', without any express or implied
|
11
|
+
warranty. In no event will the authors be held liable for any damages
|
12
|
+
arising from the use of this software.
|
13
|
+
|
14
|
+
Permission is granted to anyone to use this software for any purpose,
|
15
|
+
including commercial applications, and to alter it and redistribute it
|
16
|
+
freely, subject to the following restrictions:
|
17
|
+
|
18
|
+
1. The origin of this software must not be misrepresented; you must not
|
19
|
+
claim that you wrote the original software. If you use this software
|
20
|
+
in a product, an acknowledgment in the product documentation would be
|
21
|
+
appreciated but is not required.
|
22
|
+
|
23
|
+
2. Altered source versions must be plainly marked as such, and must not be
|
24
|
+
misrepresented as being the original software.
|
25
|
+
|
26
|
+
3. This notice may not be removed or altered from any source
|
27
|
+
distribution.
|
28
|
+
=end
|