| 1308 | _tagxPad* gDebugPad; |
| 1309 | |
| 1310 | void xQuatCopy(xQuat* a, const xQuat* b) |
| 1311 | { |
| 1312 | a->s = b->s; |
| 1313 | a->v.x = b->v.x; |
| 1314 | a->v.y = b->v.y; |
| 1315 | a->v.z = b->v.z; |
| 1316 | } |
| 1317 | |
| 1318 | U32 xVec3Equals(const xVec3* a, const xVec3* b) |
| 1319 | { |
no outgoing calls
no test coverage detected