Warning
This page refers to an old version of SFML. Click here to switch to the latest version.
Warning
This page refers to an old version of SFML. Click here to switch to the latest version.
VideoMode defines a video mode (size, bpp) More...
#include <SFML/Window/VideoMode.hpp>
Public Member Functions | |
VideoMode ()=default | |
Default constructor. | |
VideoMode (Vector2u modeSize, unsigned int modeBitsPerPixel=32) | |
Construct the video mode with its attributes. | |
bool | isValid () const |
Tell whether or not the video mode is valid. |
Static Public Member Functions | |
static VideoMode | getDesktopMode () |
Get the current desktop video mode. | |
static const std::vector< VideoMode > & | getFullscreenModes () |
Retrieve all the video modes supported in fullscreen mode. |
Public Attributes | |
Vector2u | size |
Video mode width and height, in pixels. | |
unsigned int | bitsPerPixel {} |
Video mode pixel depth, in bits per pixels. |
Related Symbols | |
(Note that these are not member symbols.) | |
bool | operator== (const VideoMode &left, const VideoMode &right) |
Overload of operator== to compare two video modes. | |
bool | operator!= (const VideoMode &left, const VideoMode &right) |
Overload of operator!= to compare two video modes. | |
bool | operator< (const VideoMode &left, const VideoMode &right) |
Overload of operator< to compare video modes. | |
bool | operator> (const VideoMode &left, const VideoMode &right) |
Overload of operator> to compare video modes. | |
bool | operator<= (const VideoMode &left, const VideoMode &right) |
Overload of operator<= to compare video modes. | |
bool | operator>= (const VideoMode &left, const VideoMode &right) |
Overload of operator>= to compare video modes. |
VideoMode defines a video mode (size, 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 (sf::Window) 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.
sf::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.
Additionally, sf::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.
Usage example:
Definition at line 43 of file VideoMode.hpp.
|
default |
Default constructor.
This constructors initializes all members to 0.
|
explicit |
Construct the video mode with its attributes.
modeSize | Width and height in pixels |
modeBitsPerPixel | Pixel depths in bits per pixel |
|
staticnodiscard |
Get the current desktop video mode.
|
staticnodiscard |
Retrieve all the video modes supported in fullscreen mode.
When creating a fullscreen window, the video mode is restricted to be compatible with what the graphics driver and monitor support. This function returns the complete list of all video modes that can be used in fullscreen mode. The returned array is sorted from best to worst, so that the first element will always give the best mode (higher width, height and bits-per-pixel).
|
nodiscard |
Tell whether or not the video mode is valid.
The validity of video modes is only relevant when using fullscreen windows; otherwise any video mode can be used with no restriction.
Overload of operator!= to compare two video modes.
left | Left operand (a video mode) |
right | Right operand (a video mode) |
Overload of operator< to compare video modes.
left | Left operand (a video mode) |
right | Right operand (a video mode) |
Overload of operator<= to compare video modes.
left | Left operand (a video mode) |
right | Right operand (a video mode) |
Overload of operator== to compare two video modes.
left | Left operand (a video mode) |
right | Right operand (a video mode) |
Overload of operator> to compare video modes.
left | Left operand (a video mode) |
right | Right operand (a video mode) |
Overload of operator>= to compare video modes.
left | Left operand (a video mode) |
right | Right operand (a video mode) |
unsigned int sf::VideoMode::bitsPerPixel {} |
Video mode pixel depth, in bits per pixels.
Definition at line 103 of file VideoMode.hpp.
Vector2u sf::VideoMode::size |
Video mode width and height, in pixels.
Definition at line 102 of file VideoMode.hpp.