Penguin

SDL_!ResizeEvent?

SDL_!ResizeEvent?

NAME STRUCTURE DEFINITION STRUCTURE DATA DESCRIPTION SEE ALSO


NAME

SDL_!ResizeEvent?- Window resize event structure

STRUCTURE DEFINITION

typedef struct{ Uint8 type; int w, h; } SDL_!ResizeEvent?;

STRUCTURE DATA

type SDL_VIDEORESIZE

w, h New width and height of the window

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 recieved the window should be resized to the new dimensions using SDL_!SetVideoMode?.

SEE ALSO

SDL_Event, SDL_!SetVideoMode?


This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.