Construct the video mode with its attributes.
Tell whether or not the video mode is valid.
Returns a string representation of the video mode.
Get the current desktop video mode.
Retrieve all the video modes supported in fullscreen mode.
Video mode pixel depth, in bits per pixels.
Video mode height, in pixels.
Video mode width, in pixels.
VideoMode defines a video mode (width, height, bpp)
A video mode is defined by a width and a height (in pixels) and a depth (in bits per pixel).
Video modes are used to setup windows (Window class) at creation time.
The main usage of video modes is for fullscreen mode: indeed you must use one of the valid video modes allowed by the OS (which are defined by what the monitor and the graphics card support), otherwise your window creation will just fail.
VideoMode provides a static function for retrieving the list of all the video modes supported by the system: getFullscreenModes().
A custom video mode can also be checked directly for fullscreen compatibility with its isValid() function.
Additionnally, VideoMode provides a static function to get the mode currently used by the desktop: getDesktopMode(). This allows to build windows with the same size or pixel depth as the current resolution.