Open ThomasCartier opened 12 months ago
The context is random access of accessors, because iterators consume their view. A slice doesn't suffer from this and is more efficient in that case, instead of rebuilding a reader everytime. What do you think ?
Hi,
Not very experienced in Rust,
read_inverse_bind_matrices
returns an iterator, which force tocollect()
afterwards.Is it possible to return a slice over the buffer instead, avoiding to collect?
Maybe through a
read_slice_inverse_bind_matrices
?Thanks!