SdlFree
Free allocated memory using SDL's memory manager.
This should (and must) only be used for freeing memory allocated by SDL's memory manager function (like SdlMAlloc). Do not use it to free memory allocated by Delphi's memory manager functions (like GetMem).
The pointer is no longer valid after this call and cannot be dereferenced anymore.
If AMem
is nil, this routine does nothing.
Definition
Unit: Neslib.Sdl3.Additional
Parameters
AMem
: Pointer
: A pointer to allocated memory, or nil.
See Also
Remarks
It is safe to call this method from any thread