Scroll to navigation

SDL_GetCameraDeviceName(3) SDL3 FUNCTIONS SDL_GetCameraDeviceName(3)

NAME

SDL_GetCameraDeviceName - Get human-readable device name for a camera.

SYNOPSIS

#include "SDL3/SDL.h"
char * SDL_GetCameraDeviceName(SDL_CameraDeviceID instance_id);

DESCRIPTION

The returned string is owned by the caller; please release it with

SDL_free () when done with it.

FUNCTION PARAMETERS

the camera device instance ID

RETURN VALUE

Returns Human-readable device name, or NULL on error; 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.0.0.

SEE ALSO

SDL_GetCameraDevices(3)

SDL 3.1.0 SDL