tiny_gltf 1.0.2 → 2.5.0.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.
@@ -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(rprimitives, DBL2NUM(mesh->weights[i]));
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
- rb_ivar_set(rsampler, rb_intern("@wrap_r"), texture_wrap_to_sym(sampler->wrapR));
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;