table of contents
- trixie 3.2.10+ds-1
 - testing 3.2.26+ds-1
 - unstable 3.2.26+ds-2
 - experimental 3.3.2+git20251103~dc5b136+ds-1
 
| SDL_SetGPUSwapchainParameters(3) | SDL3 FUNCTIONS | SDL_SetGPUSwapchainParameters(3) | 
NAME¶
SDL_SetGPUSwapchainParameters - Changes the swapchain parameters for the given claimed window.
HEADER FILE¶
Defined in SDL3/SDL_gpu.h
SYNOPSIS¶
#include "SDL3/SDL.h"
bool SDL_SetGPUSwapchainParameters(
    SDL_GPUDevice *device,
    SDL_Window *window,
    SDL_GPUSwapchainComposition swapchain_composition,
    SDL_GPUPresentMode present_mode);
DESCRIPTION¶
This function will fail if the requested present mode or swapchain composition are unsupported by the device. Check if the parameters are supported via
SDL_WindowSupportsGPUPresentMode
  
   /
SDL_WindowSupportsGPUSwapchainComposition
prior to calling this function.
SDL_GPU_PRESENTMODE_VSYNC
  
   and
SDL_GPU_SWAPCHAINCOMPOSITION_SDR
  
   are always supported.
FUNCTION PARAMETERS¶
- device
 - a GPU context.
 - window
 - an SDL_Window
    
that has been claimed. - swapchain_composition
 - the desired composition of the swapchain.
 - present_mode
 - the desired present mode for the swapchain.
 
RETURN VALUE¶
Returns true if successful, false on error; call
SDL_GetError () for more information.
AVAILABILITY¶
This function is available since SDL 3.2.0.
SEE ALSO¶
•(3), SDL_WindowSupportsGPUPresentMode(3), •(3), SDL_WindowSupportsGPUSwapchainComposition(3)
| SDL 3.2.10 | Simple Directmedia Layer |