SdlFillChar4
Initialize all 32-bit words of buffer of memory to a specific value.
This function will set a buffer of ACount UInt32 values, pointed to by ADst, to the value specified in AVal.
Unlike FillChar, this sets 32-bit values, not bytes, so it's not limited to a range of 0-255.
Definition
Unit: Neslib.Sdl3.Additional
Parameters
ADst:
: The destination memory region.
ACount: NativeInt
: The number of UInt32 values to set in ADst.
AVal: Cardinal
: The UInt32 value to set.
Returns
Pointer: The pointer to ADst.
Remarks
It is safe to call this function from any thread