assimp-ffi 0.1.7 → 0.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e29eac84b0143ea1a2d99d06f28fe44e26d822cca173572cc067088e1ec7c74c
4
- data.tar.gz: 353ebafacb488b5614557559af6c5d752ca22b46fd28a51179b9be555b2ef528
3
+ metadata.gz: bcb6604bdbc664925b80b68d5b3203cf8537fe2150e23c898596d6a10bf08c1c
4
+ data.tar.gz: e6f525ebf5fde40bcaccd55967a9ad956c29bb8de91082132289dedf0a37c4b6
5
5
  SHA512:
6
- metadata.gz: 792c1266fbe056e30db9fcc38169e92da4df02bbd573fb4e51159f4082398edaab6e44f11e076186c6078b15dfd1ad7ee804c814f93fe02ff0bc1968a5538678
7
- data.tar.gz: 00550ed5077d97bb8876fc3019f9e94dc4ede996ceeea40a1b5889afdbc66950540cf83604e4970fcdb6d5c88310b16faa12a836ad05c2e8a6df299c1173caed
6
+ metadata.gz: 582359516d534c53f70edcbf8daa1af8226545f8fefa711c4dcdec316261234cb9cc64994fd55d19d53181453930034756eac348094ccfb30236fe08f042a51a
7
+ data.tar.gz: 2158ce8875ebbdafbc2ebd17595ff1709db1f5ff7ce988ed294a7af9d1c8845d31d9af17fe7431c7b3381ba1d547f4f3627fb21778d103e5b5e5d07ccfd8ad0f
data/LICENSE CHANGED
File without changes
data/README.md CHANGED
File without changes
data/lib/assimp/anim.rb CHANGED
File without changes
data/lib/assimp/base.rb CHANGED
File without changes
data/lib/assimp/camera.rb CHANGED
File without changes
data/lib/assimp/color4.rb CHANGED
File without changes
data/lib/assimp/config.rb CHANGED
File without changes
data/lib/assimp/defs.rb CHANGED
File without changes
data/lib/assimp/export.rb CHANGED
@@ -17,7 +17,7 @@ module Assimp
17
17
 
18
18
  attach_function :aiGetExportFormatCount, [], :size_t
19
19
  attach_function :aiGetExportFormatDescription, [:size_t], ExportFormatDesc.ptr
20
- attach_function :aiReleaseExportFormatDescription, [ExportFormatDesc.ptr], :void
20
+ attach_function :aiReleaseExportFormatDescription, [:pointer], :void
21
21
 
22
22
  def self.export_format_descriptions
23
23
  count = Assimp::aiGetExportFormatCount
@@ -27,7 +27,7 @@ module Assimp
27
27
  end
28
28
 
29
29
  attach_function :aiCopyScene, [Scene.ptr, :pointer], :void
30
- attach_function :aiFreeScene, [Scene.ptr], :void
30
+ attach_function :aiFreeScene, [:pointer], :void
31
31
  attach_function :aiExportScene, [Scene.ptr, :string, :string, PostProcessSteps], Return
32
32
  attach_function :aiExportSceneEx, [Scene.ptr, :string, :string, FileIO.ptr, PostProcessSteps], Return
33
33
 
@@ -53,6 +53,6 @@ module Assimp
53
53
  end
54
54
 
55
55
  attach_function :aiExportSceneToBlob, [Scene.ptr, :string, PostProcessSteps], :pointer #ExportDataBlob.ptr
56
- attach_function :aiReleaseExportBlob, [ExportDataBlob.ptr], :void
56
+ attach_function :aiReleaseExportBlob, [:pointer], :void
57
57
 
58
58
  end
data/lib/assimp/fileio.rb CHANGED
File without changes
data/lib/assimp/import.rb CHANGED
@@ -234,7 +234,7 @@ module Assimp
234
234
  s
235
235
  end
236
236
 
237
- attach_function :aiReleaseImport, [Scene.by_ref], :void
237
+ attach_function :aiReleaseImport, [:pointer], :void
238
238
  attach_function :aiIsExtensionSupported, [:string], :bool
239
239
 
240
240
  def self.extension_supported?(extension)
File without changes
data/lib/assimp/light.rb CHANGED
File without changes
File without changes
File without changes
File without changes
data/lib/assimp/mesh.rb CHANGED
File without changes
File without changes
File without changes
File without changes
data/lib/assimp/scene.rb CHANGED
File without changes
File without changes
data/lib/assimp/types.rb CHANGED
File without changes
@@ -9,6 +9,6 @@ module Assimp
9
9
  def to_s
10
10
  "<#{x}, #{y}>"
11
11
  end
12
- end
12
+ end
13
13
 
14
14
  end
File without changes
File without changes
data/lib/assimp-ffi.rb CHANGED
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: assimp-ffi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brice Videau
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-03 00:00:00.000000000 Z
11
+ date: 2023-09-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi