| 37 | #define WRITE_SEQUENCE 0 |
| 38 | |
| 39 | PX_FORCE_INLINE PxF32 flip(const PxF32* v) |
| 40 | { |
| 41 | const PxU8* b = (const PxU8*)v; |
| 42 | PxF32 f; |
| 43 | PxU8* bf = (PxU8*)&f; |
| 44 | bf[0] = b[3]; |
| 45 | bf[1] = b[2]; |
| 46 | bf[2] = b[1]; |
| 47 | bf[3] = b[0]; |
| 48 | return f; |
| 49 | } |
| 50 | |
| 51 | SampleRandomPrecomputed::SampleRandomPrecomputed(PhysXSample& app) |
| 52 | : mPrecomputedRandomSequence(NULL), |
no outgoing calls
no test coverage detected