Scroll to navigation

SDL_AddVulkanRenderSemaphores(3) SDL3 FUNCTIONS SDL_AddVulkanRenderSemaphores(3)

NAME

SDL_AddVulkanRenderSemaphores - Add a set of synchronization semaphores for the current frame.

HEADER FILE

Defined in SDL3/SDL_render.h

SYNOPSIS

#include "SDL3/SDL.h"
int SDL_AddVulkanRenderSemaphores(SDL_Renderer *renderer, Uint32 wait_stage_mask, Sint64 wait_semaphore, Sint64 signal_semaphore);

DESCRIPTION

The Vulkan renderer will wait for wait_semaphore before submitting rendering commands and signal signal_semaphore after rendering commands are complete for this frame.

This should be called each frame that you want semaphore synchronization. The Vulkan renderer may have multiple frames in flight on the GPU, so you should have multiple semaphores that are used for synchronization. Querying

SDL_PROP_RENDERER_VULKAN_SWAPCHAIN_IMAGE_COUNT_NUMBER

will give you the maximum number of semaphores you'll need.

FUNCTION PARAMETERS

the rendering context
the VkPipelineStageFlags for the wait
a VkSempahore to wait on before rendering the current frame, or 0 if not needed
a VkSempahore that SDL will signal when rendering for the current frame is complete, or 0 if not needed

RETURN VALUE

Returns 0 on success or a negative error code on failure; call

SDL_GetError () for more information.

AVAILABILITY

This function is available since SDL 3.0.0.

SDL 3.1.2 Simple Directmedia Layer