| 48 | /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
| 49 | |
| 50 | PxU16 physx::readWord(bool mismatch, PxInputStream& stream) |
| 51 | { |
| 52 | PxU16 d; |
| 53 | stream.read(&d, sizeof(PxU16)); |
| 54 | |
| 55 | if(mismatch) |
| 56 | flip(d); |
| 57 | return d; |
| 58 | } |
| 59 | |
| 60 | PxU32 physx::readDword(bool mismatch, PxInputStream& stream) |
| 61 | { |