Scroll to navigation

SDL_SystemTheme(3type) SDL3 DATATYPES SDL_SystemTheme(3type)

NAME

SDL_SystemTheme - System theme.

HEADER FILE

Defined in SDL3/SDL_video.h

SYNOPSIS

#include "SDL3/SDL.h"
typedef enum SDL_SystemTheme
{
    SDL_SYSTEM_THEME_UNKNOWN,   /**< Unknown system theme */
    SDL_SYSTEM_THEME_LIGHT,     /**< Light colored system theme */
    SDL_SYSTEM_THEME_DARK       /**< Dark colored system theme */
} SDL_SystemTheme;

AVAILABILITY

This enum is available since SDL 3.0.0.

SDL 3.1.2 Simple Directmedia Layer