opengl-bindings 1.2.5 → 1.2.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/ChangeLog +4 -0
  3. data/README.md +1 -1
  4. data/lib/glut.rb +1 -1
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4ddc4180b77f1462a9332d837f6407f64d8b2ae2
4
- data.tar.gz: a031f8fcd1fb28f05f26ec84442aac439168f379
3
+ metadata.gz: c964e1b54d22352af3eab2876350acbb23666ca2
4
+ data.tar.gz: bcde9b9741fa0d2964a5ec10d0c47d8127b019c9
5
5
  SHA512:
6
- metadata.gz: 46d5d104ad614132980dff88cc387d6697b66df278f92d21c4ec768f27e14eab8c83e9b621236f7ac880888d472b627d79dc187f0327ac8d0d99ccb29b20daeb
7
- data.tar.gz: 734edfebe89c53b3a381db9ba5dffcedfb3230ed9f5d1b11d0ae4bfc5375e3c81b29813af44970c765de4878375db095238ccd22807a3d4d96ff419ee4586e41
6
+ metadata.gz: 13f8892ca82f3d74c1fbfa5c01006333a228e01e542ee2608c7008b9e891d857ef265aca5f430529c9a9f3ad9e4e77a93ea90a385fb20505c260f2cda477316d
7
+ data.tar.gz: 4eaaf2d5b05d00751934318012bd727fd082e1902217d1a90c9f5fee2d74d5bdb24cf63f121f20601d773d8eeccccf3f0047414dde7803e259e7b58991da14cf
data/ChangeLog CHANGED
@@ -1,3 +1,7 @@
1
+ 2013-10-20 vaiorabbit <https://twitter.com/vaiorabbit>
2
+
3
+ * glut.rb (:GLUTPassiveMotionFunc): Fixed signature definition (Thanks: Дмитрий Краснов).
4
+
1
5
  2013-10-19 vaiorabbit <https://twitter.com/vaiorabbit>
2
6
 
3
7
  * opengl_command.rb, opengl_ext_command.rb, opengl_ext_enum.rb: Updated using latest gl.xml.
data/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  ...and wrapper code generator.
6
6
 
7
7
  * Created : 2013-08-28
8
- * Last modified : 2013-10-19
8
+ * Last modified : 2013-10-20
9
9
 
10
10
 
11
11
  ## Features ##
@@ -95,7 +95,7 @@ module GLUT
95
95
  :GLUTKeyboardFunc => "void GLUTKeyboardFunc(unsigned char, int, int)",
96
96
  :GLUTMouseFunc => "void GLUTMouseFunc(int, int, int, int)",
97
97
  :GLUTMotionFunc => "void GLUTMotionFunc(int, int)",
98
- :GLUTPassiveMotionFunc => "void GLUTPassiveMotionFunc(int x, int y)",
98
+ :GLUTPassiveMotionFunc => "void GLUTPassiveMotionFunc(int, int)",
99
99
  :GLUTEntryFunc => "void GLUTEntryFunc(int)",
100
100
  :GLUTVisibilityFunc => "void GLUTVisibilityFunc(int)",
101
101
  :GLUTIdleFunc => "void GLUTIdleFunc()",
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.2.5
4
+ version: 1.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - vaiorabbit
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-10-18 00:00:00.000000000 Z
11
+ date: 2013-10-19 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |
14
14
  Ruby bindings for OpenGL 1.0-4.4 and all extensions using Fiddle (For MRI >= 2.0.0).