------------------------------------------------------------------------------------------------
| 585 | |
| 586 | // ------------------------------------------------------------------------------------------------ |
| 587 | void MeshGeometry::ReadVertexDataColors(std::vector<aiColor4D>& colors_out, const Scope& source, |
| 588 | const std::string& MappingInformationType, |
| 589 | const std::string& ReferenceInformationType) |
| 590 | { |
| 591 | ResolveVertexDataArray(colors_out,source,MappingInformationType,ReferenceInformationType, |
| 592 | "Colors", |
| 593 | "ColorIndex", |
| 594 | m_vertices.size(), |
| 595 | m_mapping_counts, |
| 596 | m_mapping_offsets, |
| 597 | m_mappings); |
| 598 | } |
| 599 | |
| 600 | // ------------------------------------------------------------------------------------------------ |
| 601 | static const char *TangentIndexToken = "TangentIndex"; |
nothing calls this directly
no test coverage detected