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