Scroll to navigation

SDL_RenderGetD3D12Device(3) SDL3 FUNCTIONS SDL_RenderGetD3D12Device(3)

NAME

SDL_RenderGetD3D12Device - Get the D3D12 device associated with a renderer.

SYNOPSIS

#include "SDL3/SDL.h"
ID3D12Device* SDL_RenderGetD3D12Device(SDL_Renderer* renderer);

DESCRIPTION

Once you are done using the device, you should release it to avoid a resource leak.

FUNCTION PARAMETERS

the renderer from which to get the associated D3D12 device

RETURN VALUE

Returns the D3D12 device associated with given renderer or NULL if it is not a D3D12 renderer; call SDL_GetError () for more information.

AVAILABILITY

This function is available since SDL 3.0.0.

SDL 3.0.0 SDL