logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SDL_ResizeEvent - Window resize event structure

Description

SDL_ResizeEvent  is  a member of the SDL_Event union and is used when an event of type SDL_VIDEORESIZE is
       reported.

       When SDL_RESIZABLE is passed as a flag to SDL_SetVideoMode the user is allowed to resize the applications
       window. When the window is resized an SDL_VIDEORESIZE is report, with the new  window  width  and  height
       values  stored in w and h, respectively. When an SDL_VIDEORESIZE is received the window should be resized
       to the new dimensions using SDL_SetVideoMode.

Name

       SDL_ResizeEvent - Window resize event structure

See Also

SDL_Event, SDL_SetVideoMode

SDL                                          Tue 11 Sep 2001, 22:59                           SDL_ResizeEvent(3)

Structure Data

typeSDL_VIDEORESIZEw, h                New width and height of the window

Structure Definition

       typedef struct{
         Uint8 type;
         int w, h;
       } SDL_ResizeEvent;

See Also