Init  ( n -- n )

publication: 26 octobre 2024 / mis à jour 26 octobre 2024

Read this page in english

 

vocabulaire: SDL2

Initialise la librairie SDL.

n doit être une valeur:

SDL_INIT_TIMER \ timer subsystem

SDL_INIT_AUDIO \ audio subsystem

SDL_INIT_VIDEO \ video subsystem; automatically initializes the events subsystem

SDL_INIT_JOYSTICK \ joystick subsystem; automatically initializes the events subsystem

SDL_INIT_HAPTIC \ haptic (force feedback) subsystem

SDL_INIT_GAMECONTROLLER \ controller subsystem; automatically initializes the joystick subsystem

SDL_INIT_EVENTS \ events subsystem

SDL_INIT_SENSOR

Renvoie 0 en cas de succès ou un code d'erreur négatif en cas d'échec. Appeler GetError pour plus d'informations.

Exemple:

\ Initialize SDL with error management 
: SDL.init ( n -- ) 
    Init 
    if 
        ." SDl could not intialize! SDL_Error: " getError . 
    then 
  ; 
SDL_INIT_VIDEO SDL.init 

Legal: site web personnel sans commerce / personal site without seling