@@ -42,7 +42,7 @@ impl Gltf {
42
42
let buffer_path = gltf_path. with_file_name ( & relative_buffer_path) ;
43
43
44
44
gltf. buffers . push ( json:: Buffer {
45
- byte_length : buffer_vec. len ( ) as u32 ,
45
+ byte_length : buffer_vec. len ( ) . into ( ) ,
46
46
name : Some ( format ! ( "{}_Buffer{}" , gltf_filename, buffer_idx) ) ,
47
47
uri : Some ( relative_buffer_path) ,
48
48
extensions : Default :: default ( ) ,
@@ -800,9 +800,9 @@ impl Gltf {
800
800
Some ( vertices) => {
801
801
self . root . buffer_views . push ( json:: buffer:: View {
802
802
buffer : buffer_index,
803
- byte_length : expected_vertices_length as u32 ,
804
- byte_offset : Some ( offset_so_far) ,
805
- byte_stride : Some ( 12 ) ,
803
+ byte_length : expected_vertices_length. into ( ) ,
804
+ byte_offset : Some ( json :: validation :: USize64 ( offset_so_far as _ ) ) ,
805
+ byte_stride : Some ( json :: buffer :: Stride ( 12 ) ) ,
806
806
name : Some ( format ! ( "{}_Buffer_Vertices" , name) ) ,
807
807
target : Some ( Valid ( json:: buffer:: Target :: ArrayBuffer ) ) ,
808
808
extensions : Default :: default ( ) ,
@@ -813,8 +813,8 @@ impl Gltf {
813
813
json:: Index :: new ( self . root . buffer_views . len ( ) as u32 - 1 ) ;
814
814
self . root . accessors . push ( json:: Accessor {
815
815
buffer_view : Some ( buffer_view_index) ,
816
- byte_offset : Some ( 0 ) ,
817
- count : vertices. len ( ) as u32 ,
816
+ byte_offset : Some ( json :: validation :: USize64 ( 0 ) ) ,
817
+ count : vertices. len ( ) . into ( ) ,
818
818
component_type : Valid ( json:: accessor:: GenericComponentType (
819
819
json:: accessor:: ComponentType :: F32 ,
820
820
) ) ,
@@ -844,9 +844,9 @@ impl Gltf {
844
844
Some ( normals) => {
845
845
self . root . buffer_views . push ( json:: buffer:: View {
846
846
buffer : buffer_index,
847
- byte_length : expected_normals_length as u32 ,
848
- byte_offset : Some ( offset_so_far) ,
849
- byte_stride : Some ( 12 ) ,
847
+ byte_length : expected_normals_length. into ( ) ,
848
+ byte_offset : Some ( json :: validation :: USize64 ( offset_so_far as _ ) ) ,
849
+ byte_stride : Some ( json :: buffer :: Stride ( 12 ) ) ,
850
850
name : Some ( format ! ( "{}_Buffer_Normals" , name) ) ,
851
851
target : Some ( Valid ( json:: buffer:: Target :: ArrayBuffer ) ) ,
852
852
extensions : Default :: default ( ) ,
@@ -857,8 +857,8 @@ impl Gltf {
857
857
json:: Index :: new ( self . root . buffer_views . len ( ) as u32 - 1 ) ;
858
858
self . root . accessors . push ( json:: Accessor {
859
859
buffer_view : Some ( buffer_view_index) ,
860
- byte_offset : Some ( 0 ) ,
861
- count : normals. len ( ) as u32 ,
860
+ byte_offset : Some ( json :: validation :: USize64 ( 0 ) ) ,
861
+ count : normals. len ( ) . into ( ) ,
862
862
component_type : Valid ( json:: accessor:: GenericComponentType (
863
863
json:: accessor:: ComponentType :: F32 ,
864
864
) ) ,
@@ -888,9 +888,9 @@ impl Gltf {
888
888
Some ( colors) => {
889
889
self . root . buffer_views . push ( json:: buffer:: View {
890
890
buffer : buffer_index,
891
- byte_length : expected_colors_length as u32 ,
892
- byte_offset : Some ( offset_so_far) ,
893
- byte_stride : Some ( 16 ) ,
891
+ byte_length : expected_colors_length. into ( ) ,
892
+ byte_offset : Some ( json :: validation :: USize64 ( offset_so_far as _ ) ) ,
893
+ byte_stride : Some ( json :: buffer :: Stride ( 16 ) ) ,
894
894
name : Some ( format ! ( "{}_Buffer_Colors" , name) ) ,
895
895
target : Some ( Valid ( json:: buffer:: Target :: ArrayBuffer ) ) ,
896
896
extensions : Default :: default ( ) ,
@@ -901,8 +901,8 @@ impl Gltf {
901
901
json:: Index :: new ( self . root . buffer_views . len ( ) as u32 - 1 ) ;
902
902
self . root . accessors . push ( json:: Accessor {
903
903
buffer_view : Some ( buffer_view_index) ,
904
- byte_offset : Some ( 0 ) ,
905
- count : colors. len ( ) as u32 ,
904
+ byte_offset : Some ( json :: validation :: USize64 ( 0 ) ) ,
905
+ count : colors. len ( ) . into ( ) ,
906
906
component_type : Valid ( json:: accessor:: GenericComponentType (
907
907
json:: accessor:: ComponentType :: F32 ,
908
908
) ) ,
@@ -936,9 +936,9 @@ impl Gltf {
936
936
Some ( uv_set) => {
937
937
self . root . buffer_views . push ( json:: buffer:: View {
938
938
buffer : buffer_index,
939
- byte_length : expected_uvs_length as u32 ,
940
- byte_offset : Some ( offset_so_far) ,
941
- byte_stride : Some ( 8 ) ,
939
+ byte_length : expected_uvs_length. into ( ) ,
940
+ byte_offset : Some ( json :: validation :: USize64 ( offset_so_far as _ ) ) ,
941
+ byte_stride : Some ( json :: buffer :: Stride ( 8 ) ) ,
942
942
name : Some ( format ! ( "{}_Buffer_UVs" , name) ) ,
943
943
target : Some ( Valid ( json:: buffer:: Target :: ArrayBuffer ) ) ,
944
944
extensions : Default :: default ( ) ,
@@ -949,8 +949,8 @@ impl Gltf {
949
949
json:: Index :: new ( self . root . buffer_views . len ( ) as u32 - 1 ) ;
950
950
self . root . accessors . push ( json:: Accessor {
951
951
buffer_view : Some ( buffer_view_index) ,
952
- byte_offset : Some ( 0 ) ,
953
- count : uv_set. uvs . len ( ) as u32 ,
952
+ byte_offset : Some ( json :: validation :: USize64 ( 0 ) ) ,
953
+ count : uv_set. uvs . len ( ) . into ( ) ,
954
954
component_type : Valid ( json:: accessor:: GenericComponentType (
955
955
json:: accessor:: ComponentType :: F32 ,
956
956
) ) ,
@@ -972,8 +972,8 @@ impl Gltf {
972
972
Some ( triangles) => {
973
973
self . root . buffer_views . push ( json:: buffer:: View {
974
974
buffer : buffer_index,
975
- byte_length : expected_triangles_length as u32 ,
976
- byte_offset : Some ( offset_so_far) ,
975
+ byte_length : expected_triangles_length. into ( ) ,
976
+ byte_offset : Some ( json :: validation :: USize64 ( offset_so_far as _ ) ) ,
977
977
byte_stride : None , //Some(6),
978
978
name : Some ( format ! ( "{}_Buffer_Triangles" , name) ) ,
979
979
target : Some ( Valid ( json:: buffer:: Target :: ElementArrayBuffer ) ) ,
@@ -984,8 +984,8 @@ impl Gltf {
984
984
json:: Index :: new ( self . root . buffer_views . len ( ) as u32 - 1 ) ;
985
985
self . root . accessors . push ( json:: Accessor {
986
986
buffer_view : Some ( buffer_view_index) ,
987
- byte_offset : Some ( 0 ) ,
988
- count : triangles. len ( ) as u32 * 3 ,
987
+ byte_offset : Some ( json :: validation :: USize64 ( 0 ) ) ,
988
+ count : ( triangles. len ( ) * 3 ) . into ( ) ,
989
989
component_type : Valid ( json:: accessor:: GenericComponentType (
990
990
json:: accessor:: ComponentType :: U16 ,
991
991
) ) ,
0 commit comments