tiny_gltf 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c6b246873c5dbe489402464d29b4511cb603bcc67152683d1a3e8afd959503be
4
- data.tar.gz: ab011ee2ee2a7ee03a4c2adbc85727928557b10109987be8a7fda7b873d4c025
3
+ metadata.gz: b954a969cc444a33651e63d72d15d816b3b5f109d419179dfded48934099c9d3
4
+ data.tar.gz: fefc289f2b3c6caa665a267aa5c7f8a19c732c44a8321cca22dc5739b3a75d6f
5
5
  SHA512:
6
- metadata.gz: 03c1c3c951805226a881d9cd154595817de064985a0434f563dec42119cdb2456469dc722c7c1308f8550093a0d9ae78f81996f70226fc999ad857415aaf6b3f
7
- data.tar.gz: efdfb25cfc428c9ce8c9206a28063838e338df3aead24adf32998e9c8589702b39ec70c1dcea7ab67bf1eb4b97acc1fc7a84c0281e6e98e9dd8261e1d6ba09ed
6
+ metadata.gz: de2c43dd86086b3b5abed2be79de26b0720273ad6af6fd56752be3dd12f38a92040824a46179967c672de0e3f2461c03d8df7e9f1e2f8934ca6b009e82c0e650
7
+ data.tar.gz: d023f445d65862e8b20a52b38b5597e5b2b7606974f6ccddab6f7bd105611fdd1aa538f8dd36da292106bc70e0b6c2b43c4716e478cc53e92f28595f75cc8523
@@ -1,7 +1,15 @@
1
1
  #ifndef TINY_GLTF_H
2
2
  #define TINY_GLTF_H 1
3
3
 
4
+ #ifdef __MINGW32__
5
+ #include <winsock2.h>
6
+ #include <windows.h>
7
+ #endif
8
+
9
+ #include <time.h> // work around C++/C linkage error on some platforms
10
+
4
11
  #if __cplusplus
12
+ #include <algorithm>
5
13
  #include "tiny_gltf.h"
6
14
  using namespace tinygltf;
7
15
  extern "C" {
@@ -1,3 +1,3 @@
1
1
  module TinyGLTF
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tiny_gltf
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Colin MacKenzie IV