Function SDL_ClearProperty
pub unsafe extern "C" fn SDL_ClearProperty(
props: u32,
name: *const i8,
) -> bool
Available on crate feature
dep_sdl3
only.Expand description
Clear a property from a group of properties.
§Parameters
props
: the properties to modify.name
: the name of the property to clear.
§Return value
Returns true on success or false on failure; call SDL_GetError()
for more
information.
§Thread safety
It is safe to call this function from any thread.
§Availability
This function is available since SDL 3.2.0.