opengl-bindings2 2.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
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