tiny_gltf 1.0.2 → 2.5.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +9 -7
- data/ext/tiny_gltf/json.hpp +17300 -10953
- data/ext/tiny_gltf/rb_tiny_gltf_mesh.cpp +1 -1
- data/ext/tiny_gltf/rb_tiny_gltf_sampler.cpp +3 -1
- data/ext/tiny_gltf/tiny_gltf.h +229 -120
- data/lib/tiny_gltf/version.rb +1 -1
- metadata +3 -3
@@ -11,7 +11,7 @@ VALUE rMesh_new(const Mesh *mesh, VALUE rmodel) {
|
|
11
11
|
|
12
12
|
VALUE rweights = rb_ary_new();
|
13
13
|
for (size_t i = 0; i < mesh->weights.size(); i++) {
|
14
|
-
rb_ary_push(
|
14
|
+
rb_ary_push(rweights, DBL2NUM(mesh->weights[i]));
|
15
15
|
}
|
16
16
|
|
17
17
|
rb_ivar_set(rmesh, rb_intern("@model"), rmodel);
|
@@ -10,7 +10,9 @@ VALUE rSampler_new(const Sampler *sampler, VALUE rmodel) {
|
|
10
10
|
rb_ivar_set(rsampler, rb_intern("@mag_filter"), texture_filter_to_sym(sampler->magFilter));
|
11
11
|
rb_ivar_set(rsampler, rb_intern("@wrap_s"), texture_wrap_to_sym(sampler->wrapS));
|
12
12
|
rb_ivar_set(rsampler, rb_intern("@wrap_t"), texture_wrap_to_sym(sampler->wrapT));
|
13
|
-
|
13
|
+
// removed from tiny_gltf until a spec or extension actually calls for it
|
14
|
+
// https://github.com/syoyo/tinygltf/issues/287
|
15
|
+
// rb_ivar_set(rsampler, rb_intern("@wrap_r"), texture_wrap_to_sym(sampler->wrapR));
|
14
16
|
rb_ivar_set(rsampler, rb_intern("@extras"), rValue_new(&sampler->extras, rmodel));
|
15
17
|
|
16
18
|
return rsampler;
|