| 199 | static const char* InputElementTypeString(InputElementType elemType); |
| 200 | |
| 201 | template<typename TSerializer> void Serialize(TSerializer& serializer) |
| 202 | { |
| 203 | BulkSerializeItem(serializer, meshParts); |
| 204 | SerializeItem(serializer, numVertices); |
| 205 | SerializeItem(serializer, numIndices); |
| 206 | SerializeItem(serializer, vtxOffset); |
| 207 | SerializeItem(serializer, idxOffset); |
| 208 | uint32 idxType = uint32(indexType); |
| 209 | SerializeItem(serializer, idxType); |
| 210 | indexType = IndexType(idxType); |
| 211 | SerializeItem(serializer, aabbMin); |
| 212 | SerializeItem(serializer, aabbMax); |
| 213 | } |
| 214 | |
| 215 | protected: |
| 216 |
nothing calls this directly
no test coverage detected