CreateWindow  ( zstr x y w h fl -- win )

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

Read this page in english

 

vocabulaire: SDL2

Créez une fenêtre avec la position, les dimensions et les indicateurs spécifiés.

Paramètres :

Renvoie win qui a été créé ou 0 en cas d'échec.

Exemple:

\ define size and position for SDL window 
800 constant SCREEN_WIDTH 
400 constant SCREEN_HEIGHT 
200 constant X0_SCREEN_POSITION 
 50 constant Y0_SCREEN_POSITION 
 
z" My first window with SDL2"  
    X0_SCREEN_POSITION Y0_SCREEN_POSITION  
    SCREEN_WIDTH SCREEN_HEIGHT  
    SDL_WINDOW_SHOWN CreateWindow 
    value WIN0 

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