tiny_gltf 0.1.0 → 0.1.1
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 +4 -4
- data/ext/tiny_gltf/rb_tiny_gltf.h +8 -0
- data/lib/tiny_gltf/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b954a969cc444a33651e63d72d15d816b3b5f109d419179dfded48934099c9d3
|
4
|
+
data.tar.gz: fefc289f2b3c6caa665a267aa5c7f8a19c732c44a8321cca22dc5739b3a75d6f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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" {
|
data/lib/tiny_gltf/version.rb
CHANGED