| 133 | }; |
| 134 | |
| 135 | inline size_t get_attribute_size(const tinygltf::Model *model, uint32_t accessorId) |
| 136 | { |
| 137 | assert(accessorId < model->accessors.size()); |
| 138 | return model->accessors[accessorId].count; |
| 139 | }; |
| 140 | |
| 141 | inline size_t get_attribute_stride(const tinygltf::Model *model, uint32_t accessorId) |
| 142 | { |
no test coverage detected