PxMemMove

Defined in include/foundation/PxMemory.h

inline void *PxMemMove(void *dest, const void *src, PxU32 count)

Copies the bytes of one memory block to another.

The memory blocks can overlap.

Note

Use PxMemCopy if memory blocks do not overlap.

Parameters
  • dest – [out] Pointer to block of memory to copy to.

  • src – [in] Pointer to block of memory to copy from.

  • count – [in] Number of bytes to copy.

Returns

Pointer to destination memory block