A list of all available video modes. More...
#include <IVideoModeList.h>
A list of all available video modes.
You can get a list via IrrlichtDevice::getVideoModeList(). If you are confused now, because you think you have to create an Irrlicht Device with a video mode before being able to get the video mode list, let me tell you that there is no need to start up an Irrlicht Device with EDT_DIRECT3D8, EDT_OPENGL or EDT_SOFTWARE: For this (and for lots of other reasons) the null device, EDT_NULL exists.
Definition at line 23 of file IVideoModeList.h.
virtual s32 irr::video::IVideoModeList::getDesktopDepth | ( | ) | const [pure virtual] |
Get the pixel depth of a video mode in bits.
virtual const core::dimension2d<u32>& irr::video::IVideoModeList::getDesktopResolution | ( | ) | const [pure virtual] |
Get current desktop screen resolution.
virtual s32 irr::video::IVideoModeList::getVideoModeCount | ( | ) | const [pure virtual] |
Gets amount of video modes in the list.
Get the pixel depth of a video mode in bits.
modeNumber,: | zero based index of the video mode. |
virtual core::dimension2d<u32> irr::video::IVideoModeList::getVideoModeResolution | ( | s32 | modeNumber | ) | const [pure virtual] |
Get the screen size of a video mode in pixels.
modeNumber,: | zero based index of the video mode. |
virtual core::dimension2d<u32> irr::video::IVideoModeList::getVideoModeResolution | ( | const core::dimension2d< u32 > & | minSize, |
const core::dimension2d< u32 > & | maxSize | ||
) | const [pure virtual] |
Get a supported screen size with certain constraints.
minSize,: | Minimum dimensions required. |
maxSize,: | Maximum dimensions allowed. |