opengl-bindings 1.5.0 → 1.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ChangeLog +31 -0
- data/README.md +1 -1
- data/lib/opengl.rb +12 -6
- data/lib/opengl_command.rb +3 -3
- data/lib/opengl_es_ext_command.rb +817 -808
- data/lib/opengl_es_ext_enum.rb +459 -444
- data/lib/opengl_ext.rb +10 -4
- data/lib/opengl_ext_command.rb +4773 -4773
- data/sample/glfw31_build_dylib.sh +4 -4
- metadata +2 -2
@@ -3,12 +3,12 @@
|
|
3
3
|
#
|
4
4
|
# Ref.: https://github.com/malkia/ufo/blob/master/build/OSX/glfw.sh
|
5
5
|
#
|
6
|
-
wget http://downloads.sourceforge.net/project/glfw/glfw/3.1.
|
7
|
-
tar xvjf glfw-3.1.
|
8
|
-
cd glfw-3.1.
|
6
|
+
wget http://downloads.sourceforge.net/project/glfw/glfw/3.1.2/glfw-3.1.2.tar.bz2
|
7
|
+
tar xvjf glfw-3.1.2.tar.bz2
|
8
|
+
cd glfw-3.1.2/
|
9
9
|
mkdir build
|
10
10
|
cd build
|
11
|
-
export MACOSX_DEPLOYMENT_TARGET=10.
|
11
|
+
export MACOSX_DEPLOYMENT_TARGET=10.11
|
12
12
|
cmake -D GLFW_NATIVE_API=1 -D CMAKE_OSX_ARCHITECTURES="i386;x86_64" -D BUILD_SHARED_LIBS=ON -D CMAKE_C_COMPILER=clang ../
|
13
13
|
make
|
14
14
|
|
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.5.
|
4
|
+
version: 1.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- vaiorabbit
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-10-
|
11
|
+
date: 2015-10-24 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |
|
14
14
|
Ruby bindings for OpenGL - 4.5, OpenGL ES - 3.2 and all extensions using Fiddle (For MRI >= 2.0.0). GLFW/GLUT/GLU bindings are also available.
|