| 1287 | }; |
| 1288 | |
| 1289 | static void CopyBone(Bone* dst, Bone* src) |
| 1290 | { |
| 1291 | // While it's not a POD type, we copy all data as-is |
| 1292 | // We aren't running a destructor on the stale data |
| 1293 | memcpy(dst, src, sizeof(Bone)); |
| 1294 | } |
| 1295 | |
| 1296 | static void CalcIndicesDepthFirst(BoneSortInfo* infos, const Bone* bone, uint32_t* index) |
| 1297 | { |