Function SDL_ReleaseGPUFence

pub unsafe extern "C" fn SDL_ReleaseGPUFence(
    device: *mut SDL_GPUDevice,
    fence: *mut SDL_GPUFence,
)
Available on crate feature dep_sdl3 only.
Expand description

Releases a fence obtained from SDL_SubmitGPUCommandBufferAndAcquireFence.

You must not reference the fence after calling this function.

§Parameters

  • device: a GPU context.
  • fence: a fence.

§Availability

This function is available since SDL 3.2.0.

§See also