PxMemSet

Defined in include/foundation/PxMemory.h

inline void *PxMemSet(void *dest, PxI32 c, PxU32 count)

Sets the bytes of the provided buffer to the specified value.

Parameters
  • dest – [out] Pointer to block of memory to set to the specified value.

  • c – [in] Value to set the bytes of the block of memory to.

  • count – [in] Number of bytes to set to the specified value.

Returns

Pointer to memory block (same as input)