| 21 | }; |
| 22 | |
| 23 | FORCE_INLINE static uint32 GetKey(int32 lodIndex, int32 meshIndex, MeshBufferType type) |
| 24 | { |
| 25 | Key key; |
| 26 | key.Value = 0; |
| 27 | key.Lod = (uint8)lodIndex; |
| 28 | key.BufferType = (uint8)type; |
| 29 | key.MeshIndex = (uint16)meshIndex; |
| 30 | return key.Value; |
| 31 | } |
| 32 | |
| 33 | bool MeshDeformationData::LoadMeshAccessor(MeshAccessor& accessor) const |
| 34 | { |
no outgoing calls
no test coverage detected