Skip to content

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

function SdlFillChar4(var ADst; const ACount: NativeInt; 
  const AVal: Cardinal): Pointer; inline

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