From 3cc1861221d761b7f0301b9b61de4e1aa18c09f4 Mon Sep 17 00:00:00 2001 From: Sheikh Dawood Abdul Ajees Date: Mon, 20 Nov 2017 11:35:52 -0600 Subject: PhysX 3.4.1, APEX 1.4.1 Release @23131702 --- .../Documentation/PhysXAPI/files/group__foundation.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'PhysX_3.4/Documentation/PhysXAPI/files/group__foundation.html') diff --git a/PhysX_3.4/Documentation/PhysXAPI/files/group__foundation.html b/PhysX_3.4/Documentation/PhysXAPI/files/group__foundation.html index a0dd357e..8441701e 100644 --- a/PhysX_3.4/Documentation/PhysXAPI/files/group__foundation.html +++ b/PhysX_3.4/Documentation/PhysXAPI/files/group__foundation.html @@ -480,9 +480,9 @@ PX_FORCE_INLINE float PX_FORCE_INLINE void * PxMemSet (void *dest, PxI32 c, PxU32 count)  Sets the bytes of the provided buffer to the specified value.
-PX_FORCE_INLINE void * PxMemCopy (void *PX_RESTRICT dest, const void *PX_RESTRICT src, PxU32 count) +PX_FORCE_INLINE void * PxMemCopy (void *dest, const void *src, PxU32 count) - Copies the bytes of one memory block to another. The memory blocks must not overlap.
+ Copies the bytes of one memory block to another. The memory blocks must not overlap.
PX_FORCE_INLINE void * PxMemMove (void *dest, const void *src, PxU32 count)  Copies the bytes of one memory block to another. The memory blocks can overlap.
@@ -4822,20 +4822,20 @@ The return value is the greater of the two specified values.

- +

- + - + @@ -4904,7 +4904,7 @@ Copies the bytes of one memory block to another. The memory blocks must not over

Copies the bytes of one memory block to another. The memory blocks can overlap.

-

Note:
Use PxMemCopy if memory blocks do not overlap.
+
Note:
Use PxMemCopy if memory blocks do not overlap.
Parameters:
PX_FORCE_INLINE void* PxMemCopy (void *PX_RESTRICT void *  dest,
const void *PX_RESTRICT const void *  src,
-- cgit v1.2.3
dest Pointer to block of memory to copy to.