diff options
| author | Sheikh Dawood <[email protected]> | 2018-08-13 13:37:04 -0500 |
|---|---|---|
| committer | Sheikh Dawood <[email protected]> | 2018-08-13 13:37:04 -0500 |
| commit | 3f9977d72f8a481e76b6ad643a3d312a8cf9b551 (patch) | |
| tree | 8dfa563cf2a06498b56b055af133bd066f1f349c /PxShared/src/foundation/include | |
| parent | PhysX 3.4, APEX 1.4 patch release @24214033 (diff) | |
| download | physx-3.4-3f9977d72f8a481e76b6ad643a3d312a8cf9b551.tar.xz physx-3.4-3f9977d72f8a481e76b6ad643a3d312a8cf9b551.zip | |
PhysX 3.4, APEX 1.4 patch release @24698370
Diffstat (limited to 'PxShared/src/foundation/include')
| -rw-r--r-- | PxShared/src/foundation/include/PsVecMathAoSScalarInline.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PxShared/src/foundation/include/PsVecMathAoSScalarInline.h b/PxShared/src/foundation/include/PsVecMathAoSScalarInline.h index 855965eb..b98eb922 100644 --- a/PxShared/src/foundation/include/PsVecMathAoSScalarInline.h +++ b/PxShared/src/foundation/include/PsVecMathAoSScalarInline.h @@ -1054,7 +1054,7 @@ PX_FORCE_INLINE Vec4V V4PermYZXW(const Vec4V v) return Vec4V(v.y, v.z, v.x, v.w); } -PX_FORCE_INLINE Vec4V V4PermZWXY(const Vec4V a) +PX_FORCE_INLINE Vec4V V4PermZWXY(const Vec4V v) { return Vec4V(v.z, v.w, v.x, v.y); } |